- Fixed instant exposure jumps causing visible flickering - Implemented proper gradual ramping using ramp_step variable - Added IDS uEye SDK integration for accurate exposure range query - Added hcam property to idsueyesrc to expose camera handle - Updated intervalometer to query on first frame when camera is ready - Added comprehensive debug documentation with tuning guide For dawn/dusk time-lapse, use: ramp-rate=vslow update-interval=1000
30 lines
649 B
CMake
30 lines
649 B
CMake
set (SOURCES
|
|
gstintervalometer.c
|
|
)
|
|
|
|
set (HEADERS
|
|
gstintervalometer.h)
|
|
|
|
include_directories (AFTER
|
|
${ORC_INCLUDE_DIR}
|
|
${IDSUEYE_INCLUDE_DIR})
|
|
|
|
set (libname gstintervalometer)
|
|
|
|
add_library (${libname} MODULE
|
|
${SOURCES}
|
|
${HEADERS})
|
|
|
|
target_link_libraries (${libname}
|
|
${ORC_LIBRARIES}
|
|
${GLIB2_LIBRARIES}
|
|
${GOBJECT_LIBRARIES}
|
|
${GSTREAMER_LIBRARY}
|
|
${GSTREAMER_BASE_LIBRARY}
|
|
${GSTREAMER_VIDEO_LIBRARY}
|
|
${IDSUEYE_LIBRARIES})
|
|
|
|
if (WIN32)
|
|
install (FILES $<TARGET_PDB_FILE:${libname}> DESTINATION ${PDB_INSTALL_DIR} COMPONENT pdb OPTIONAL)
|
|
endif ()
|
|
install(TARGETS ${libname} LIBRARY DESTINATION ${PLUGIN_INSTALL_DIR}) |