A spatial shift observed in the cubert data (.cu3 ) when plotting the spectrum and the RGB equivalent Image #75
Replies: 3 comments 1 reply
-
|
Hello, im assuming you need to additionally need to apply a distance correction onto the data. proc = cuvis.ProcessingContext(...)
distance_mesu = cuvis.Measurement(...)
# Either set a distance Reference
proc.set_reference(distance_mesu, cuvis.ReferenceType.Distance)
# or set the distance as a parameter
proc.calc_distance(distance_in_mm)
# Then apply the distance correction onto your measurements...
proc.apply(measurement)
proc.apply(white_measurement)
....
If you have more question regarding the distance calibration for your camera, |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Hey, so i don't have the time to go through your code in detail. However some thing that i noticed: when you use the sdk to reprocess a measurmement to reflectance mode, the unit for this cube is Percentage / 100 (meaning it describes up to two decimal places of the reflectance percentage) reflectance_cube = cube / 10_000The rest of the usage of the sdk looks good to me. |
Beta Was this translation helpful? Give feedback.








Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm utilising cubert data and tried to extract the.cu3 file, which is done using dark current and white current subtraction preprocessing. Then I tried showing the RGB equivalent to gain a sense of spatial detail. But now I'm experiencing a shift between the bands; how can I handle it? I can provide you with the code I tested and the spectrum I acquired.
Beta Was this translation helpful? Give feedback.
All reactions