blob: 9d23ae32ada9f2c8f11721f98c0876881d50c796 [file] [log] [blame]
zongwaveb0926c32017-10-23 15:38:07 +08001/*
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 Yuan9fbfce62017-11-24 19:24:15 +080025#include <xcam_std.h>
26#include <video_buffer.h>
27#include <interface/data_types.h>
zongwaveb0926c32017-10-23 15:38:07 +080028
29namespace XCam {
30
Yinhang Liu90bee3f2019-01-11 10:18:19 +080031struct FMConfig {
zongwaveb0926c32017-10-23 15:38:07 +080032 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 Liu2a548292017-12-05 18:10:58 +080036 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
zongwaveb0926c32017-10-23 15:38:07 +080040
Yinhang Liu90bee3f2019-01-11 10:18:19 +080041 FMConfig ()
zongwaveb0926c32017-10-23 15:38:07 +080042 : sitch_min_width (56)
43 , min_corners (8)
44 , offset_factor (0.8f)
45 , delta_mean_offset (5.0f)
Yinhang Liu2a548292017-12-05 18:10:58 +080046 , recur_offset_error (8.0f)
zongwaveb0926c32017-10-23 15:38:07 +080047 , max_adjusted_offset (12.0f)
Yinhang Liu2a548292017-12-05 18:10:58 +080048 , max_valid_offset_y (8.0f)
49 , max_track_error (24.0f)
zongwaveb0926c32017-10-23 15:38:07 +080050 {}
51};
52
53class FeatureMatch
54{
55public:
56 explicit FeatureMatch ();
57 virtual ~FeatureMatch () {};
58
Yinhang Liua68e0502019-01-11 11:06:21 +080059 virtual void feature_match (
60 const SmartPtr<VideoBuffer> &left_buf, const SmartPtr<VideoBuffer> &right_buf) = 0;
zongwaveb0926c32017-10-23 15:38:07 +080061
62 void set_fm_index (int idx);
Yinhang Liua68e0502019-01-11 11:06:21 +080063 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);
zongwaveb0926c32017-10-23 15:38:07 +080067
Wind Yuan3e206442017-11-06 12:55:00 +080068 void reset_offsets ();
Yinhang Liua68e0502019-01-11 11:06:21 +080069 float get_current_left_offset_x ();
70 float get_current_left_offset_y ();
Wind Yuan3e206442017-11-06 12:55:00 +080071
Yinhang Liua68e0502019-01-11 11:06:21 +080072 virtual void set_dst_width (int width);
73 virtual void enable_adjust_crop_area ();
Junkai Wu27375b02018-01-24 16:32:14 +080074
zongwaveb0926c32017-10-23 15:38:07 +080075protected:
Yinhang Liua68e0502019-01-11 11:06:21 +080076 bool get_mean_offset (const std::vector<float> &offsets, float sum, int &count, float &mean_offset);
zongwaveb0926c32017-10-23 15:38:07 +080077
zongwaveb0926c32017-10-23 15:38:07 +080078private:
79 XCAM_DEAD_COPY (FeatureMatch);
80
81protected:
82 float _x_offset;
Junkai Wu27375b02018-01-24 16:32:14 +080083 float _y_offset;
zongwaveb0926c32017-10-23 15:38:07 +080084 float _mean_offset;
Junkai Wu27375b02018-01-24 16:32:14 +080085 float _mean_offset_y;
zongwaveb0926c32017-10-23 15:38:07 +080086 int _valid_count;
Yinhang Liu90bee3f2019-01-11 10:18:19 +080087 FMConfig _config;
zongwaveb0926c32017-10-23 15:38:07 +080088
Yinhang Liua68e0502019-01-11 11:06:21 +080089 Rect _left_rect;
90 Rect _right_rect;
91
zongwaveb0926c32017-10-23 15:38:07 +080092 // debug parameters
93 int _fm_idx;
Yinhang Liua68e0502019-01-11 11:06:21 +080094 uint32_t _frame_num;
zongwaveb0926c32017-10-23 15:38:07 +080095};
96
97}
98
99#endif // XCAM_FEATURE_MATCH_H