I've successfully generated Orthomosaic TIF, DSM TIF, 3D model, and point cloud using the Python API in Agisoft Metashape 1.8.5. However, I've noticed that the DSM TIF image has an excessively high color contrast, and I'd like to adjust this. Are there any options or methods within Agisoft Metashape 1.8.5 Python API that allow me to modify the color contrast of the DSM TIF image during or after generation?
This is my code for the reference
chunk.buildDem(source_data=Metashape.DenseCloudData, interpolation=Metashape.Interpolation.EnabledInterpolation)
chunk.exportRaster('/dem.tif', source_data = Metashape.ElevationData)