-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
depth encoding to HEVC Main10 proof-of-concept
- working proof of concept for encoding depth stream - into HEVC Main10, with p010le pixel format Looks great at first sight but this needs more tests. relevant to #9
- Loading branch information
Showing
3 changed files
with
148 additions
and
15 deletions.
There are no files selected for viewing
Submodule hardware-video-encoder
updated
6 files
+4 −1 | CMakeLists.txt | |
+33 −16 | README.md | |
+31 −23 | examples/hve_encode_raw_h264.c | |
+154 −0 | examples/hve_encode_raw_hevc10.c | |
+45 −19 | hve.c | |
+125 −47 | hve.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
{ | ||
"aux-param-autoexposure-setpoint": "1536", | ||
"aux-param-colorcorrection1": "0.298828", | ||
"aux-param-colorcorrection10": "0", | ||
"aux-param-colorcorrection11": "0", | ||
"aux-param-colorcorrection12": "0", | ||
"aux-param-colorcorrection2": "0.293945", | ||
"aux-param-colorcorrection3": "0.293945", | ||
"aux-param-colorcorrection4": "0.114258", | ||
"aux-param-colorcorrection5": "0", | ||
"aux-param-colorcorrection6": "0", | ||
"aux-param-colorcorrection7": "0", | ||
"aux-param-colorcorrection8": "0", | ||
"aux-param-colorcorrection9": "0", | ||
"aux-param-depthclampmax": "65536", | ||
"aux-param-depthclampmin": "0", | ||
"aux-param-disparityshift": "0", | ||
"controls-autoexposure-auto": "True", | ||
"controls-autoexposure-manual": "8500", | ||
"controls-color-autoexposure-auto": "True", | ||
"controls-color-autoexposure-manual": "166", | ||
"controls-color-backlight-compensation": "0", | ||
"controls-color-brightness": "0", | ||
"controls-color-contrast": "50", | ||
"controls-color-gain": "64", | ||
"controls-color-gamma": "300", | ||
"controls-color-hue": "0", | ||
"controls-color-power-line-frequency": "3", | ||
"controls-color-saturation": "64", | ||
"controls-color-sharpness": "50", | ||
"controls-color-white-balance-auto": "True", | ||
"controls-color-white-balance-manual": "4600", | ||
"controls-depth-gain": "16", | ||
"controls-laserpower": "150", | ||
"controls-laserstate": "on", | ||
"ignoreSAD": "0", | ||
"param-autoexposure-setpoint": "1536", | ||
"param-censusenablereg-udiameter": "9", | ||
"param-censusenablereg-vdiameter": "9", | ||
"param-censususize": "9", | ||
"param-censusvsize": "9", | ||
"param-depthclampmax": "65536", | ||
"param-depthclampmin": "0", | ||
"param-depthunits": "100", | ||
"param-disableraucolor": "0", | ||
"param-disablesadcolor": "0", | ||
"param-disablesadnormalize": "0", | ||
"param-disablesloleftcolor": "0", | ||
"param-disableslorightcolor": "1", | ||
"param-disparitymode": "0", | ||
"param-disparityshift": "0", | ||
"param-lambdaad": "751", | ||
"param-lambdacensus": "6", | ||
"param-leftrightthreshold": "10", | ||
"param-maxscorethreshb": "2893", | ||
"param-medianthreshold": "796", | ||
"param-minscorethresha": "4", | ||
"param-neighborthresh": "108", | ||
"param-raumine": "6", | ||
"param-rauminn": "3", | ||
"param-rauminnssum": "7", | ||
"param-raumins": "2", | ||
"param-rauminw": "2", | ||
"param-rauminwesum": "12", | ||
"param-regioncolorthresholdb": "0.785714", | ||
"param-regioncolorthresholdg": "0.565558", | ||
"param-regioncolorthresholdr": "0.985323", | ||
"param-regionshrinku": "3", | ||
"param-regionshrinkv": "0", | ||
"param-robbinsmonrodecrement": "25", | ||
"param-robbinsmonroincrement": "2", | ||
"param-rsmdiffthreshold": "1.65625", | ||
"param-rsmrauslodiffthreshold": "0.71875", | ||
"param-rsmremovethreshold": "0.809524", | ||
"param-scanlineedgetaub": "13", | ||
"param-scanlineedgetaug": "15", | ||
"param-scanlineedgetaur": "30", | ||
"param-scanlinep1": "155", | ||
"param-scanlinep1onediscon": "160", | ||
"param-scanlinep1twodiscon": "59", | ||
"param-scanlinep2": "190", | ||
"param-scanlinep2onediscon": "507", | ||
"param-scanlinep2twodiscon": "493", | ||
"param-secondpeakdelta": "647", | ||
"param-texturecountthresh": "0", | ||
"param-texturedifferencethresh": "1722", | ||
"param-usersm": "1", | ||
"param-zunits": "100", | ||
"stream-depth-format": "Z16", | ||
"stream-fps": "30", | ||
"stream-height": "480", | ||
"stream-ir-format": "Y8", | ||
"stream-width": "848" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters