Skip to content

Commit

Permalink
better 3D visualization, small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bbean23 committed Apr 29, 2024
1 parent 178f353 commit b8e4d8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contrib/app/SpotAnalysis/PeakFlux.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self, indir: str, outdir: str, experiment_name: str, settings_path_
NullImageSubtractionImageProcessor(),
ConvolutionImageProcessor(kernel="box", diameter=3),
BcsLocatorImageProcessor(),
View3dImageProcessor(crop_to_threshold=20, max_dims=(30, 30)),
View3dImageProcessor(crop_to_threshold=20, max_resolution=(100, 100), interactive=True),
PopulationStatisticsImageProcessor(initial_min=0, initial_max=255),
FalseColorImageProcessor(),
AnnotationImageProcessor(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from opencsp.common.lib.cv.spot_analysis.image_processor.BcsLocatorImageProcessor import BcsLocatorImageProcessor
from opencsp.common.lib.cv.spot_analysis.image_processor.ConvolutionImageProcessor import ConvolutionImageProcessor
from opencsp.common.lib.cv.spot_analysis.image_processor.CroppingImageProcessor import CroppingImageProcessor
from opencsp.common.lib.cv.spot_analysis.image_processor.View3dImageProcessor import View3dImageProcessor
from opencsp.common.lib.cv.spot_analysis.image_processor.EchoImageProcessor import EchoImageProcessor
from opencsp.common.lib.cv.spot_analysis.image_processor.ExposureDetectionImageProcessor import (
ExposureDetectionImageProcessor,
Expand All @@ -27,6 +26,7 @@
from opencsp.common.lib.cv.spot_analysis.image_processor.SupportingImagesCollectorImageProcessor import (
SupportingImagesCollectorImageProcessor,
)
from opencsp.common.lib.cv.spot_analysis.image_processor.View3dImageProcessor import View3dImageProcessor

# Make these classes available when importing cv.spot_analysis.image_processor.*
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion opencsp/common/lib/render_control/RenderControlSurface.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(
color_map: str | None = "viridis",
alpha: float = 1.0,
edgecolor='black',
linewidth=0.3,
linewidth=0.05,
contour: None | bool | str = True,
contour_color_map: str | None = None,
) -> None:
Expand Down

0 comments on commit b8e4d8e

Please sign in to comment.