Hi @zhengwang,
I have tried raw, correction, normalization and calibrated.
- Raw and Calibrated returns always an intensity of 1 (I have the intensityScalePercent = 100 to get a value [0, 1]). So, it always returns the maximum value independent of the distance to the object or the beam incidence angle. Can it be a scale or resolution problem?
- With normalization I get different values of intensity but it reduces it by a factor of 1/d⁰·⁵, where d is the distance to the object.
- With correction reduces the intensity by a factor of 1/d¹·⁶.
To achieve a successful radiometric study, the intensity should be reduced by a factor of:
- 1/d² : if the target object is bigger than the beam footprint.
- 1/d⁴ : if the target object is smaller than the beam footprint.
I attach here my Lidar config JSON with only two beams (one centered) that I am using:
“profile”: {
“scanType”: “solidState”,
“rotationDirection”: “CW”,
“intensityProcessing”: “coorection”,
“rayType”: “GAUSSIAN_BEAM”,
“nearRangeM”: 0.5,
“farRangeM”: 300.0,
“effectiveApertureSize”: 0.015,
“focusDistM”: 0.16,
“rangeResolutionM”: 0.0015,
“rangeAccuracyM”: 0.03,
“avgPowerW”: 0.3,
“minReflectance”: 0.1,
“minReflectanceRange”: 300.0,
“wavelengthNm”: 1064.0,
“pulseTimeNs”: 3,
“maxReturns”: 1,
“scanRateBaseHz”: 6.6,
“reportRateBaseHz”: 6.6,
“numberOfEmitters”: 2,
“numberOfChannels”: 2,
“rangeCount”: 1,
“ranges”: [
{
“min”: 0.5,
“max”: 300
}
],
“beamWaistHorM”: 0.000194,
“beamWaistVerM”: 0.000194,
“azimuthErrorMean”: 0.0,
“azimuthErrorStd”: 0.0,
“elevationErrorMean”: 0.0,
“elevationErrorStd”: 0.0,
“stateResolutionStep”: 1,
“numLines”: 1,
“numRaysPerLine”: [
2
],
“emitterStateCount”: 1,
“emitterStates”: [
{
“azimuthDeg”: [
0, -15
],
“_commentOnAzimuth”: “Flat Scan is expecting equal angles between each emitter in the line it uses”,
“elevationDeg”: [
0, 0
],
“_commentOnElevation”: “Flat Scan use the line with elevation nearest 0 as it’s first line entry”,
“fireTimeNs”: [
0, 3820
]
}
],
“intensityMappingType”: “LINEAR”,
“intensityScalePercent”: 100
}
}
I would like to know if there is some equation related to distance vs intensity? I would like to understand how it is working on each case.
Thank you @zhengwang !