Hey Jeff!
This tool is what I have been searching for. Unfortunately, I cannot make it compile on Windows 10. I am 100% not a programmer, so that is probably part of it.
I see in another thread -
https://groups.google.com/g/hugin-ptx/c/mWPCrUoh6II/m/I9cvaunfCQAJ - T.Modes seems to have it working and I attempted to follow those steps and just cannot get it to compile. I am guessing I am missing something obvious.
Here is what I have done so far -
- setup directories
- git clone the repo to the local directory - git clone https://github.com/weltyj/SkyFill
- Installed cmake 3.27.4
-
Installed tiff-3.8.2-1.exe to the same directory as the clone of the repo.
- added a few lines to the cmakelists.txt file as I could not get the find package to work.
...
# find all required packages
# currently only libtiff is required
set(TIFF_INCLUDE_DIR "C:/Users/Rod/SkyFill/TIFF")
set(TIFF_LIBRARY "C:/Users/Rod/SkyFill/TIFF/lib/libtiff.lib")
FIND_PACKAGE(TIFF REQUIRED)
INCLUDE_DIRECTORIES(${TIFF_INCLUDE_DIR})
SET(NEEDED_LIBS ${TIFF_LIBRARIES})
...
6. ran cmake from the \build directory - cmake C:\Users\Rod\SkyFill\
7. Opened the solution in visual studio community 2022
8. tweaked the projects include locations because it was still not finding the TIFF files it needed.
9. Attempted Build and got 9 errors like this- Severity Code Description Project File Line Suppression State
Error LNK2019 unresolved external symbol __imp__TIFFmalloc referenced in function read_tif_image skyfill C:\Users\Rod\SkyFill\Build\skyfill_tif.obj 1
At this time, I have no idea why I cannot get it to compile.
So ask for ya -
1. Any chance you (or T.Modes) can throw a release/compiled file up on your Github for Windows?
2. Any idea what I am doing wrong?
Thank you!