mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 14:43:57 +08:00
* refactor add function get_camerabuf_by_type remove cl_free use camera_id move front stuff into frontview_thread bigger refactor more typo rename camerabuf *c to *b cleanup header files remove wideview_thread camera_qcom.c to c++ fix SConscript camera_process_buf space sendrgb same with before do autoexposure in processing_thread correct sendrgb add camera_common.cc move yuv_transform to CameraBuf * use C to keep consitent * rebase master * rebase master * continue refactor * refactor all camera related data&function out of main done * cleanup * -use buf.rgb_width&height * remoe , * rebase master * remove unused std::vector * add func common_camera_process_front * fix max * fix sendrgb * less crap being logged * fix indents * add back thumbnails * thumbnail fixed on tici * junk junk junk * unify api * fix ptr ref * lol! * cleanup * more simplified * typos * remove terminate * use standard polling * ops_thread refactor, too much code! * fix build * ok * assert * listen * incl more * wq! * fix more build * macos * fix exp targets * front is different * const * bye * remath * remove irrelevant * do ops in a thread * fix init * return null * QCOM2 ops * qcom2 build * missing comma Co-authored-by: deanlee <deanlee3@gmail.com> Co-authored-by: Comma Device <device@comma.ai>
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
Import('env', 'arch', 'cereal', 'messaging', 'common', 'gpucommon', 'visionipc', 'USE_WEBCAM', 'QCOM_REPLAY')
|
|
|
|
libs = ['m', 'pthread', common, 'jpeg', 'OpenCL', cereal, messaging, 'zmq', 'capnp', 'kj', visionipc, gpucommon]
|
|
|
|
if arch == "aarch64":
|
|
libs += ['gsl', 'CB', 'adreno_utils', 'EGL', 'GLESv3', 'cutils', 'ui']
|
|
if QCOM_REPLAY:
|
|
cameras = ['cameras/camera_frame_stream.cc']
|
|
else:
|
|
cameras = ['cameras/camera_qcom.cc']
|
|
elif arch == "larch64":
|
|
libs += ['atomic']
|
|
cameras = ['cameras/camera_qcom2.cc']
|
|
# no screen
|
|
# env = env.Clone()
|
|
# env.Append(CXXFLAGS = '-DNOSCREEN')
|
|
# env.Append(CFLAGS = '-DNOSCREEN')
|
|
else:
|
|
if USE_WEBCAM:
|
|
libs += ['opencv_core', 'opencv_highgui', 'opencv_imgproc', 'opencv_videoio']
|
|
cameras = ['cameras/camera_webcam.cc']
|
|
env = env.Clone()
|
|
env.Append(CXXFLAGS = '-DWEBCAM')
|
|
env.Append(CFLAGS = '-DWEBCAM')
|
|
env.Append(CPPPATH = '/usr/local/include/opencv4')
|
|
else:
|
|
cameras = ['cameras/camera_frame_stream.cc']
|
|
|
|
if arch == "Darwin":
|
|
del libs[libs.index('OpenCL')]
|
|
env = env.Clone()
|
|
env['FRAMEWORKS'] = ['OpenCL']
|
|
|
|
env.SharedLibrary('snapshot/visionipc',
|
|
["#selfdrive/common/visionipc.c", "#selfdrive/common/ipc.c"])
|
|
|
|
env.Program('camerad', [
|
|
'main.cc',
|
|
'cameras/camera_common.cc',
|
|
'transforms/rgb_to_yuv.c',
|
|
'imgproc/utils.cc',
|
|
cameras,
|
|
], LIBS=libs)
|