zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 1 | /* |
| 2 | * feature_match.h - optical flow feature match |
| 3 | * |
| 4 | * Copyright (c) 2016-2017 Intel Corporation |
| 5 | * |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | * |
| 18 | * Author: Wind Yuan <feng.yuan@intel.com> |
| 19 | * Author: Yinhang Liu <yinhangx.liu@intel.com> |
| 20 | */ |
| 21 | |
| 22 | #ifndef XCAM_FEATURE_MATCH_H |
| 23 | #define XCAM_FEATURE_MATCH_H |
| 24 | |
Wind Yuan | 9fbfce6 | 2017-11-24 19:24:15 +0800 | [diff] [blame] | 25 | #include <xcam_std.h> |
| 26 | #include <video_buffer.h> |
| 27 | #include <interface/data_types.h> |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 28 | |
| 29 | namespace XCam { |
| 30 | |
Yinhang Liu | 90bee3f | 2019-01-11 10:18:19 +0800 | [diff] [blame] | 31 | struct FMConfig { |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 32 | int sitch_min_width; |
| 33 | int min_corners; // number of minimum efficient corners |
| 34 | float offset_factor; // last_offset * offset_factor + cur_offset * (1.0f - offset_factor) |
| 35 | float delta_mean_offset; // cur_mean_offset - last_mean_offset |
Yinhang Liu | 2a54829 | 2017-12-05 18:10:58 +0800 | [diff] [blame] | 36 | float recur_offset_error; // cur_offset - mean_offset |
| 37 | float max_adjusted_offset; // maximum offset of each adjustment |
| 38 | float max_valid_offset_y; // valid maximum offset in vertical direction |
| 39 | float max_track_error; // maximum track error |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 40 | |
Yinhang Liu | 90bee3f | 2019-01-11 10:18:19 +0800 | [diff] [blame] | 41 | FMConfig () |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 42 | : sitch_min_width (56) |
| 43 | , min_corners (8) |
| 44 | , offset_factor (0.8f) |
| 45 | , delta_mean_offset (5.0f) |
Yinhang Liu | 2a54829 | 2017-12-05 18:10:58 +0800 | [diff] [blame] | 46 | , recur_offset_error (8.0f) |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 47 | , max_adjusted_offset (12.0f) |
Yinhang Liu | 2a54829 | 2017-12-05 18:10:58 +0800 | [diff] [blame] | 48 | , max_valid_offset_y (8.0f) |
| 49 | , max_track_error (24.0f) |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 50 | {} |
| 51 | }; |
| 52 | |
| 53 | class FeatureMatch |
| 54 | { |
| 55 | public: |
| 56 | explicit FeatureMatch (); |
| 57 | virtual ~FeatureMatch () {}; |
| 58 | |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 59 | virtual void feature_match ( |
| 60 | const SmartPtr<VideoBuffer> &left_buf, const SmartPtr<VideoBuffer> &right_buf) = 0; |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 61 | |
| 62 | void set_fm_index (int idx); |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 63 | void set_config (const FMConfig &config); |
| 64 | |
| 65 | void set_crop_rect (const Rect &left_rect, const Rect &right_rect); |
| 66 | void get_crop_rect (Rect &left_rect, Rect &right_rect); |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 67 | |
Wind Yuan | 3e20644 | 2017-11-06 12:55:00 +0800 | [diff] [blame] | 68 | void reset_offsets (); |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 69 | float get_current_left_offset_x (); |
| 70 | float get_current_left_offset_y (); |
Wind Yuan | 3e20644 | 2017-11-06 12:55:00 +0800 | [diff] [blame] | 71 | |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 72 | virtual void set_dst_width (int width); |
| 73 | virtual void enable_adjust_crop_area (); |
Junkai Wu | 27375b0 | 2018-01-24 16:32:14 +0800 | [diff] [blame] | 74 | |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 75 | protected: |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 76 | bool get_mean_offset (const std::vector<float> &offsets, float sum, int &count, float &mean_offset); |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 77 | |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 78 | private: |
| 79 | XCAM_DEAD_COPY (FeatureMatch); |
| 80 | |
| 81 | protected: |
| 82 | float _x_offset; |
Junkai Wu | 27375b0 | 2018-01-24 16:32:14 +0800 | [diff] [blame] | 83 | float _y_offset; |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 84 | float _mean_offset; |
Junkai Wu | 27375b0 | 2018-01-24 16:32:14 +0800 | [diff] [blame] | 85 | float _mean_offset_y; |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 86 | int _valid_count; |
Yinhang Liu | 90bee3f | 2019-01-11 10:18:19 +0800 | [diff] [blame] | 87 | FMConfig _config; |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 88 | |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 89 | Rect _left_rect; |
| 90 | Rect _right_rect; |
| 91 | |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 92 | // debug parameters |
| 93 | int _fm_idx; |
Yinhang Liu | a68e050 | 2019-01-11 11:06:21 +0800 | [diff] [blame^] | 94 | uint32_t _frame_num; |
zongwave | b0926c3 | 2017-10-23 15:38:07 +0800 | [diff] [blame] | 95 | }; |
| 96 | |
| 97 | } |
| 98 | |
| 99 | #endif // XCAM_FEATURE_MATCH_H |