Skip to content

Commit

Permalink
Fix merge dev in feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgHunter committed Aug 8, 2021
1 parent 5172484 commit 13d1a8b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ namespace proc_image_processing {
RangedParameter<double> contrast_, brightness_;
};

Parameter<bool> enable_;
RangedParameter<double> contrast_, brightness_;
};

Expand Down
3 changes: 0 additions & 3 deletions src/proc_image_processing/cpu/filters/low_pass/white_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ namespace proc_image_processing {
~WhiteFilter() override = default;

void apply(cv::Mat &image) override {
if (!enable_()) {
return;
}
cv::Scalar min_pixel_range = cv::Scalar(minimal_1pixel_range_(), minimal_2pixel_range_(),
minimal_3pixel_range_());
cv::Scalar max_pixel_range = cv::Scalar(maximal_1pixel_range_(), maximal_2pixel_range_(),
Expand Down

0 comments on commit 13d1a8b

Please sign in to comment.