Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Wendell Hom <whom@nvidia.com>
  • Loading branch information
whom3 committed Jan 30, 2025
1 parent 9791d27 commit db714c3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion applications/stereo_vision/cpp/ess_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ESSPreprocessorOp : public Operator {
Parameter<int> height_;
};

// Masks low confidence pixes and resizes and rescales the disparity map to the desired resolution.
// Masks low confidence pixels and resizes and rescales the disparity map to the desired resolution.
class ESSPostprocessorOp : public Operator {
public:
HOLOSCAN_OPERATOR_FORWARD_ARGS(ESSPostprocessorOp);
Expand Down
2 changes: 1 addition & 1 deletion applications/stereo_vision/cpp/heat_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
namespace holoscan::ops {

// Makes an RGB U8 heatmap from a float32 grayscale image.
// Heatmap is scaled from min_disp_ to max_disp_ parameters.
// Heatmap is scaled from min_disp_ to max_disp_ parameters.
class HeatmapOp : public Operator {
public:
HOLOSCAN_OPERATOR_FORWARD_ARGS(HeatmapOp);
Expand Down
4 changes: 2 additions & 2 deletions applications/stereo_vision/cpp/split_video.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace holoscan::ops {
#define STEREO_VIDEO_HORIZONTAL 0
#define STEREO_VIDEO_VERTICAL 1

//splits a horizontally or vertically stacked stereo video into two video streams
// splits a horizontally or vertically stacked stereo video into two video streams
class SplitVideoOp : public Operator {
public:
HOLOSCAN_OPERATOR_FORWARD_ARGS(SplitVideoOp);
Expand All @@ -37,7 +37,7 @@ class SplitVideoOp : public Operator {
Parameter<int> stereo_video_layout_;
};

//combines two videos into a single horizontally or vertically stacked video
// combines two videos into a single horizontally or vertically stacked video
class MergeVideoOp : public Operator {
public:
HOLOSCAN_OPERATOR_FORWARD_ARGS(MergeVideoOp);
Expand Down
2 changes: 1 addition & 1 deletion applications/stereo_vision/cpp/stereo_depth_kernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ void preprocessESS(uint8_t* input, float* output, uint32_t input_width, uint32_t
(output_height + (block_dim.y - 1)) / block_dim.y);
preprocessESSKernel<<<launch_grid, block_dim, 0, stream>>>(
input, output, input_width, input_height, input_channels, output_width, output_height);
}
}

0 comments on commit db714c3

Please sign in to comment.