5897ae0e0d768c29c2856a239da86b7511dad62b
[goodguy/history.git] / cinelerra-5.1 / plugins / motion2point / motion.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2016 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include "affine.h"
23 #include "../motion-hv/motionscan-hv.h"
24 #include "bcdisplayinfo.h"
25 #include "bcsignals.h"
26 #include "clip.h"
27 #include "bchash.h"
28 #include "filexml.h"
29 #include "keyframe.h"
30 #include "language.h"
31 #include "motion.h"
32 #include "motionwindow.h"
33 #include "mutex.h"
34 #include "overlayframe.h"
35 #include "rotateframe.h"
36 #include "transportque.h"
37
38
39 #include <errno.h>
40 #include <unistd.h>
41
42 REGISTER_PLUGIN(MotionMain2)
43
44 //#undef DEBUG
45
46 #ifndef DEBUG
47 #define DEBUG
48 #endif
49
50
51 MotionConfig::MotionConfig()
52 {
53         for(int i = 0; i < TOTAL_POINTS; i++)
54         {
55                 global[i] = 1;
56                 global_range_w[i] = 5;
57                 global_range_h[i] = 5;
58                 global_origin_x[i] = 0;
59                 global_origin_y[i] = 0;
60                 global_block_w[i] = MIN_BLOCK;
61                 global_block_h[i] = MIN_BLOCK;
62                 block_x[i] = 50;
63                 block_y[i] = 50;
64                 draw_vectors[i] = 1;
65         }
66
67         global_positions = 256;
68         magnitude = 100;
69         return_speed = 0;
70         action = MotionScan::STABILIZE;
71         calculation = MotionScan::NO_CALCULATE;
72         tracking_object = MotionScan::TRACK_SINGLE;
73         track_frame = 0;
74         bottom_is_master = 1;
75         horizontal_only = 0;
76         vertical_only = 0;
77 }
78
79 void MotionConfig::boundaries()
80 {
81         for(int i = 0; i < TOTAL_POINTS; i++)
82         {
83                 CLAMP(global_range_w[i], MIN_RADIUS, MAX_RADIUS);
84                 CLAMP(global_range_h[i], MIN_RADIUS, MAX_RADIUS);
85                 CLAMP(global_origin_x[i], MIN_ORIGIN, MAX_ORIGIN);
86                 CLAMP(global_origin_y[i], MIN_ORIGIN, MAX_ORIGIN);
87                 CLAMP(global_block_w[i], MIN_BLOCK, MAX_BLOCK);
88                 CLAMP(global_block_h[i], MIN_BLOCK, MAX_BLOCK);
89         }
90
91 }
92
93 int MotionConfig::equivalent(MotionConfig &that)
94 {
95         int result = 1;
96         for(int i = 0; i < TOTAL_POINTS; i++)
97         {
98                 if(global[i] != that.global[i] ||
99                    global_range_w[i] != that.global_range_w[i] ||
100                    global_range_h[i] != that.global_range_h[i] ||
101                    draw_vectors[i] != that.draw_vectors[i] ||
102                    global_block_w[i] != that.global_block_w[i] ||
103                    global_block_h[i] != that.global_block_h[i] ||
104                    global_origin_x[i] != that.global_origin_x[i] ||
105                    global_origin_y[i] != that.global_origin_y[i] ||
106                    !EQUIV(block_x[i], that.block_x[i]) ||
107                    !EQUIV(block_y[i], that.block_y[i]))
108                    result = 0;
109         }
110
111         if(magnitude != that.magnitude ||
112                 return_speed != that.return_speed ||
113                 action != that.action ||
114                 calculation != that.calculation ||
115                 tracking_object != that.tracking_object ||
116                 track_frame != that.track_frame ||
117                 bottom_is_master != that.bottom_is_master ||
118                 horizontal_only != that.horizontal_only ||
119                 vertical_only != that.vertical_only ||
120             global_positions != that.global_positions) result = 0;
121
122         return result;
123 }
124
125 void MotionConfig::copy_from(MotionConfig &that)
126 {
127         for(int i = 0; i < TOTAL_POINTS; i++)
128         {
129                 global[i] = that.global[i];
130                 global_range_w[i] = that.global_range_w[i];
131                 global_range_h[i] = that.global_range_h[i];
132                 global_origin_x[i] = that.global_origin_x[i];
133                 global_origin_y[i] = that.global_origin_y[i];
134                 draw_vectors[i] = that.draw_vectors[i];
135                 block_x[i] = that.block_x[i];
136                 block_y[i] = that.block_y[i];
137                 global_block_w[i] = that.global_block_w[i];
138                 global_block_h[i] = that.global_block_h[i];
139         }
140
141         global_positions = that.global_positions;
142         magnitude = that.magnitude;
143         return_speed = that.return_speed;
144         action = that.action;
145         calculation = that.calculation;
146         tracking_object = that.tracking_object;
147         track_frame = that.track_frame;
148         bottom_is_master = that.bottom_is_master;
149         horizontal_only = that.horizontal_only;
150         vertical_only = that.vertical_only;
151 }
152
153 void MotionConfig::interpolate(MotionConfig &prev,
154         MotionConfig &next,
155         int64_t prev_frame,
156         int64_t next_frame,
157         int64_t current_frame)
158 {
159         //double next_scale = (double)(current_frame - prev_frame) / (next_frame - prev_frame);
160         //double prev_scale = (double)(next_frame - current_frame) / (next_frame - prev_frame);
161
162         for(int i = 0; i < TOTAL_POINTS; i++)
163         {
164                 this->global[i] = prev.global[i];
165                 this->block_x[i] = prev.block_x[i];
166                 this->block_y[i] = prev.block_y[i];
167                 this->global_range_w[i] = prev.global_range_w[i];
168                 this->global_range_h[i] = prev.global_range_h[i];
169                 this->global_origin_x[i] = prev.global_origin_x[i];
170                 this->global_origin_y[i] = prev.global_origin_y[i];
171                 this->draw_vectors[i] = prev.draw_vectors[i];
172                 this->global_block_w[i] = prev.global_block_w[i];
173                 this->global_block_h[i] = prev.global_block_h[i];
174         }
175
176         this->global_positions = prev.global_positions;
177         magnitude = prev.magnitude;
178         return_speed = prev.return_speed;
179         action = prev.action;
180         calculation = prev.calculation;
181         tracking_object = prev.tracking_object;
182         track_frame = prev.track_frame;
183         bottom_is_master = prev.bottom_is_master;
184         horizontal_only = prev.horizontal_only;
185         vertical_only = prev.vertical_only;
186 }
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206 MotionMain2::MotionMain2(PluginServer *server)
207  : PluginVClient(server)
208 {
209
210         engine = 0;
211         affine = 0;
212         for(int i = 0; i < TOTAL_POINTS; i++)
213         {
214                 total_dx[i] = 0;
215                 total_dy[i] = 0;
216         }
217         overlayer = 0;
218         search_area = 0;
219         search_size = 0;
220         temp_frame = 0;
221         previous_frame_number = -1;
222
223         prev_global_ref = 0;
224         current_global_ref = 0;
225         global_target_src = 0;
226         global_target_dst = 0;
227 }
228
229 MotionMain2::~MotionMain2()
230 {
231
232         delete engine;
233         delete affine;
234         delete overlayer;
235         delete [] search_area;
236         delete temp_frame;
237
238
239         delete prev_global_ref;
240         delete current_global_ref;
241         delete global_target_src;
242         delete global_target_dst;
243 }
244
245 const char* MotionMain2::plugin_title() { return _("Motion 2 Point"); }
246 int MotionMain2::is_realtime() { return 1; }
247 int MotionMain2::is_multichannel() { return 1; }
248
249
250 NEW_WINDOW_MACRO(MotionMain2, MotionWindow)
251
252 LOAD_CONFIGURATION_MACRO(MotionMain2, MotionConfig)
253
254
255
256 void MotionMain2::update_gui()
257 {
258         if(thread)
259         {
260                 if(load_configuration())
261                 {
262                         thread->window->lock_window("MotionMain2::update_gui");
263
264                         char string[BCTEXTLEN];
265
266                         for(int i = 0; i < TOTAL_POINTS; i++)
267                         {
268                                 ((MotionWindow*)thread->window)->global[i]->update(config.global[i]);
269
270                                 ((MotionWindow*)thread->window)->global_block_w[i]->update(config.global_block_w[i]);
271                                 ((MotionWindow*)thread->window)->global_block_h[i]->update(config.global_block_h[i]);
272                                 ((MotionWindow*)thread->window)->global_origin_x[i]->update(config.global_origin_x[i]);
273                                 ((MotionWindow*)thread->window)->global_origin_y[i]->update(config.global_origin_y[i]);
274                                 ((MotionWindow*)thread->window)->block_x[i]->update(config.block_x[i]);
275                                 ((MotionWindow*)thread->window)->block_y[i]->update(config.block_y[i]);
276                                 ((MotionWindow*)thread->window)->block_x_text[i]->update((float)config.block_x[i]);
277                                 ((MotionWindow*)thread->window)->block_y_text[i]->update((float)config.block_y[i]);
278                                 ((MotionWindow*)thread->window)->vectors[i]->update(config.draw_vectors[i]);
279                         }
280
281                         sprintf(string, "%d", config.global_positions);
282                         ((MotionWindow*)thread->window)->global_search_positions->set_text(string);
283                         ((MotionWindow*)thread->window)->magnitude->update(config.magnitude);
284                         ((MotionWindow*)thread->window)->return_speed->update(config.return_speed);
285
286
287                         ((MotionWindow*)thread->window)->track_single->update(config.tracking_object == MotionScan::TRACK_SINGLE);
288                         ((MotionWindow*)thread->window)->track_frame_number->update(config.track_frame);
289                         ((MotionWindow*)thread->window)->track_previous->update(config.tracking_object == MotionScan::TRACK_PREVIOUS);
290                         ((MotionWindow*)thread->window)->previous_same->update(config.tracking_object == MotionScan::PREVIOUS_SAME_BLOCK);
291                         if(config.tracking_object != MotionScan::TRACK_SINGLE)
292                                 ((MotionWindow*)thread->window)->track_frame_number->disable();
293                         else
294                                 ((MotionWindow*)thread->window)->track_frame_number->enable();
295
296                         ((MotionWindow*)thread->window)->action->set_text(
297                                 Action::to_text(config.action));
298                         ((MotionWindow*)thread->window)->calculation->set_text(
299                                 Calculation::to_text(config.calculation));
300                         ((MotionWindow*)thread->window)->tracking_direction->set_text(
301                                 TrackingDirection::to_text(config.horizontal_only, config.vertical_only));
302                         ((MotionWindow*)thread->window)->master_layer->set_text(
303                                 MasterLayer::to_text(config.bottom_is_master));
304
305
306                         ((MotionWindow*)thread->window)->update_mode();
307                         thread->window->unlock_window();
308                 }
309         }
310 }
311
312
313
314
315
316 void MotionMain2::save_data(KeyFrame *keyframe)
317 {
318         FileXML output;
319
320 // cause data to be stored directly in text
321         output.set_shared_output(keyframe->get_data(), MESSAGESIZE);
322         output.tag.set_title("MOTION2");
323
324         char string[BCTEXTLEN];
325         for(int i = 0; i < TOTAL_POINTS; i++)
326         {
327                 sprintf(string, "GLOBAL%d", i);
328                 output.tag.set_property(string, config.global[i]);
329                 sprintf(string, "GLOBAL_BLOCK_W%d", i);
330                 output.tag.set_property(string, config.global_block_w[i]);
331                 sprintf(string, "GLOBAL_BLOCK_H%d", i);
332                 output.tag.set_property(string, config.global_block_h[i]);
333                 sprintf(string, "BLOCK_X%d", i);
334                 output.tag.set_property(string, config.block_x[i]);
335                 sprintf(string, "BLOCK_Y%d", i);
336                 output.tag.set_property(string, config.block_y[i]);
337                 sprintf(string, "GLOBAL_RANGE_W%d", i);
338                 output.tag.set_property(string, config.global_range_w[i]);
339                 sprintf(string, "GLOBAL_RANGE_H%d", i);
340                 output.tag.set_property(string, config.global_range_h[i]);
341                 sprintf(string, "GLOBAL_ORIGIN_X%d", i);
342                 output.tag.set_property(string, config.global_origin_x[i]);
343                 sprintf(string, "GLOBAL_ORIGIN_Y%d", i);
344                 output.tag.set_property(string, config.global_origin_y[i]);
345                 sprintf(string, "DRAW_VECTORS%d", i);
346                 output.tag.set_property(string, config.draw_vectors[i]);
347         }
348
349         output.tag.set_property("GLOBAL_POSITIONS", config.global_positions);
350         output.tag.set_property("MAGNITUDE", config.magnitude);
351         output.tag.set_property("RETURN_SPEED", config.return_speed);
352         output.tag.set_property("ACTION_TYPE", config.action);
353         output.tag.set_property("TRACKING_TYPE", config.calculation);
354         output.tag.set_property("TRACKING_OBJECT", config.tracking_object);
355         output.tag.set_property("TRACK_FRAME", config.track_frame);
356         output.tag.set_property("BOTTOM_IS_MASTER", config.bottom_is_master);
357         output.tag.set_property("HORIZONTAL_ONLY", config.horizontal_only);
358         output.tag.set_property("VERTICAL_ONLY", config.vertical_only);
359         output.append_tag();
360         output.tag.set_title("/MOTION2");
361         output.append_tag();
362         output.append_newline();
363         output.terminate_string();
364 }
365
366 void MotionMain2::read_data(KeyFrame *keyframe)
367 {
368         FileXML input;
369
370         input.set_shared_input(keyframe->get_data(), strlen(keyframe->get_data()));
371
372         int result = 0;
373
374         while(!result)
375         {
376                 result = input.read_tag();
377
378                 if(!result)
379                 {
380                         if(input.tag.title_is("MOTION2"))
381                         {
382                                 char string[BCTEXTLEN];
383                                 for(int i = 0; i < TOTAL_POINTS; i++)
384                                 {
385                                         sprintf(string, "GLOBAL%d", i);
386                                         config.global[i] = input.tag.get_property(string, config.global[i]);
387                                         sprintf(string, "GLOBAL_BLOCK_W%d", i);
388                                         config.global_block_w[i] = input.tag.get_property(string, config.global_block_w[i]);
389                                         sprintf(string, "GLOBAL_BLOCK_H%d", i);
390                                         config.global_block_h[i] = input.tag.get_property(string, config.global_block_h[i]);
391                                         sprintf(string, "BLOCK_X%d", i);
392                                         config.block_x[i] = input.tag.get_property(string, config.block_x[i]);
393                                         sprintf(string, "BLOCK_Y%d", i);
394                                         config.block_y[i] = input.tag.get_property(string, config.block_y[i]);
395                                         sprintf(string, "GLOBAL_RANGE_W%d", i);
396                                         config.global_range_w[i] = input.tag.get_property(string, config.global_range_w[i]);
397                                         sprintf(string, "GLOBAL_RANGE_H%d", i);
398                                         config.global_range_h[i] = input.tag.get_property(string, config.global_range_h[i]);
399                                         sprintf(string, "GLOBAL_ORIGIN_X%d", i);
400                                         config.global_origin_x[i] = input.tag.get_property(string, config.global_origin_x[i]);
401                                         sprintf(string, "GLOBAL_ORIGIN_Y%d", i);
402                                         config.global_origin_y[i] = input.tag.get_property(string, config.global_origin_y[i]);
403                                         sprintf(string, "DRAW_VECTORS%d", i);
404                                         config.draw_vectors[i] = input.tag.get_property(string, config.draw_vectors[i]);
405                                 }
406
407                                 config.global_positions = input.tag.get_property("GLOBAL_POSITIONS", config.global_positions);
408                                 config.magnitude = input.tag.get_property("MAGNITUDE", config.magnitude);
409                                 config.return_speed = input.tag.get_property("RETURN_SPEED", config.return_speed);
410                                 config.action = input.tag.get_property("ACTION_TYPE", config.action);
411                                 config.calculation = input.tag.get_property("TRACKING_TYPE", config.calculation);
412                                 config.tracking_object = input.tag.get_property("TRACKING_OBJECT", config.tracking_object);
413                                 config.track_frame = input.tag.get_property("TRACK_FRAME", config.track_frame);
414                                 config.bottom_is_master = input.tag.get_property("BOTTOM_IS_MASTER", config.bottom_is_master);
415                                 config.horizontal_only = input.tag.get_property("HORIZONTAL_ONLY", config.horizontal_only);
416                                 config.vertical_only = input.tag.get_property("VERTICAL_ONLY", config.vertical_only);
417                         }
418                 }
419         }
420         config.boundaries();
421 }
422
423
424
425
426
427
428
429
430
431 void MotionMain2::allocate_temp(int w, int h, int color_model)
432 {
433         if(temp_frame &&
434                 (temp_frame->get_w() != w ||
435                 temp_frame->get_h() != h))
436         {
437                 delete temp_frame;
438                 temp_frame = 0;
439         }
440         if(!temp_frame)
441                 temp_frame = new VFrame(w, h, color_model, 0);
442 }
443
444
445
446 void MotionMain2::scan_motion(int point)
447 {
448         int w = current_global_ref->get_w();
449         int h = current_global_ref->get_h();
450
451
452         if(!engine) engine = new MotionScan(PluginClient::get_project_smp() + 1,
453                 PluginClient::get_project_smp() + 1);
454
455 // Get the current motion vector between the previous and current frame
456         engine->scan_frame(current_global_ref,
457                 prev_global_ref,
458                 config.global_range_w[point] * w / 100,
459                 config.global_range_h[point] * h / 100,
460                 config.global_block_w[point] * w / 100,
461                 config.global_block_h[point] * h / 100,
462                 config.block_x[point] * w / 100,
463                 config.block_y[point] * h / 100,
464                 config.tracking_object,
465                 config.calculation,
466                 config.action,
467                 config.horizontal_only,
468                 config.vertical_only,
469                 get_source_position(),
470                 total_dx[point],
471                 total_dy[point],
472                 config.global_origin_x[point] * w / 100,
473                 config.global_origin_y[point] * h / 100,
474                 1,
475                 0,
476                 0,
477                 0);
478
479         current_dx[point] = engine->dx_result;
480         current_dy[point] = engine->dy_result;
481
482 // Add current motion vector to accumulation vector.
483         if(config.tracking_object != MotionScan::TRACK_SINGLE)
484         {
485 // Retract over time
486                 total_dx[point] = (int64_t)total_dx[point] * (100 - config.return_speed) / 100;
487                 total_dy[point] = (int64_t)total_dy[point] * (100 - config.return_speed) / 100;
488                 total_dx[point] += engine->dx_result;
489                 total_dy[point] += engine->dy_result;
490         }
491         else
492 // Make accumulation vector current
493         {
494                 total_dx[point] = engine->dx_result;
495                 total_dy[point] = engine->dy_result;
496 // printf("MotionMain2::scan_motion %d %d %d %d\n",
497 // __LINE__,
498 // point,
499 // total_dx[point],
500 // total_dy[point]);
501         }
502
503 // Clamp accumulation vector
504         if(config.magnitude < 100)
505         {
506                 //int block_w = (int64_t)config.global_block_w[point] *
507                 //              current_global_ref->get_w() / 100;
508                 //int block_h = (int64_t)config.global_block_h[point] *
509                 //              current_global_ref->get_h() / 100;
510                 int block_x_orig = (int64_t)(config.block_x[point] *
511                         current_global_ref->get_w() /
512                         100);
513                 int block_y_orig = (int64_t)(config.block_y[point] *
514                         current_global_ref->get_h() /
515                         100);
516
517                 int max_block_x = (int64_t)(current_global_ref->get_w() - block_x_orig) *
518                         OVERSAMPLE *
519                         config.magnitude /
520                         100;
521                 int max_block_y = (int64_t)(current_global_ref->get_h() - block_y_orig) *
522                         OVERSAMPLE *
523                         config.magnitude /
524                         100;
525                 int min_block_x = (int64_t)-block_x_orig *
526                         OVERSAMPLE *
527                         config.magnitude /
528                         100;
529                 int min_block_y = (int64_t)-block_y_orig *
530                         OVERSAMPLE *
531                         config.magnitude /
532                         100;
533
534                 CLAMP(total_dx[point], min_block_x, max_block_x);
535                 CLAMP(total_dy[point], min_block_y, max_block_y);
536         }
537
538 // printf("MotionMain2::scan_motion %d %d %d %d\n",
539 // __LINE__,
540 // point,
541 // total_dx[point],
542 // total_dy[point]);
543
544
545 }
546
547
548
549
550 void MotionMain2::apply_motion()
551 {
552         if(config.tracking_object != MotionScan::TRACK_SINGLE)
553         {
554 // Transfer current reference frame to previous reference frame and update
555 // counter.
556                 prev_global_ref->copy_from(current_global_ref);
557                 previous_frame_number = get_source_position();
558         }
559
560 // Decide what to do with target based on requested operation
561         //int interpolation; //   variable set but not used
562         float origin_x[TOTAL_POINTS];
563         float origin_y[TOTAL_POINTS];
564         float end_x[TOTAL_POINTS];
565         float end_y[TOTAL_POINTS];
566         for(int i = 0; i < TOTAL_POINTS; i++)
567         {
568                 get_current_vector(&origin_x[i],
569                         &origin_y[i],
570                         0,
571                         0,
572                         &end_x[i],
573                         &end_y[i],
574                         i);
575         }
576
577 // Calculate rotation if 2 points
578         double angle = 0.0;
579         double angle0 = 0.0;
580         double zoom = 1.0;
581         if(config.global[ROTATION_POINT])
582         {
583                         if(origin_x[1] - origin_x[0])
584                                 angle0 = atan((double)(origin_y[0] - origin_y[1]) /
585                                         (double)(origin_x[0] - origin_x[1]));
586                         if(end_x[1] - end_x[0])
587                                 angle = atan((double)(end_y[0] - end_y[1]) /
588                                         (double)(end_x[0] - end_x[1]));
589 // printf("MotionMain2::apply_motion %d angle0=%f angle=%f\n",
590 // __LINE__,
591 // angle0 * 360 / 2 / M_PI,
592 // angle * 360 / 2 / M_PI);
593
594                         angle -= angle0;
595
596 // Calculate zoom
597 //                      zoom = DISTANCE(origin_x[1], origin_y[1], origin_x[0], origin_y[0]) /
598 //                              DISTANCE(end_x[1], end_y[1], end_x[0], end_y[0]);
599
600         }
601
602 printf("MotionMain2::apply_motion %d total_dx=%.02f total_dy=%.02f angle=%f zoom=%f\n",
603 __LINE__,
604 (float)total_dx[TRANSLATION_POINT] / OVERSAMPLE,
605 (float)total_dy[TRANSLATION_POINT] / OVERSAMPLE,
606 angle * 360 / 2 / M_PI,
607 zoom);
608
609 // Calculate translation
610         float dx = 0.0;
611         float dy = 0.0;
612         switch(config.action)
613         {
614                 case MotionScan::NOTHING:
615                         global_target_dst->copy_from(global_target_src);
616                         break;
617                 case MotionScan::TRACK:
618                         //interpolation = CUBIC_LINEAR;
619                         dx = (float)total_dx[0] / OVERSAMPLE;
620                         dy = (float)total_dy[0] / OVERSAMPLE;
621                         break;
622                 case MotionScan::TRACK_PIXEL:
623                         //interpolation = NEAREST_NEIGHBOR;
624                         dx = (int)(total_dx[0] / OVERSAMPLE);
625                         dy = (int)(total_dy[0] / OVERSAMPLE);
626                         break;
627                         //interpolation = NEAREST_NEIGHBOR;
628                         dx = -(int)(total_dx[0] / OVERSAMPLE);
629                         dy = -(int)(total_dy[0] / OVERSAMPLE);
630                         angle *= -1;
631                         break;
632                 case MotionScan::STABILIZE:
633                         //interpolation = CUBIC_LINEAR;
634                         dx = -(float)total_dx[0] / OVERSAMPLE;
635                         dy = -(float)total_dy[0] / OVERSAMPLE;
636                         angle *= -1;
637                         break;
638         }
639
640
641
642
643
644         if(config.action != MotionScan::NOTHING)
645         {
646                 double w = get_output()->get_w();
647                 double h = get_output()->get_h();
648                 double pivot_x = end_x[0];
649                 double pivot_y = end_y[0];
650                 double angle1 = atan((double)pivot_y / (double)pivot_x) + angle;
651                 double angle2 = atan((double)(w - pivot_x) / (double)pivot_y) + angle;
652                 double angle3 = atan((double)(h - pivot_y) / (double)(w - pivot_x)) + angle;
653                 double angle4 = atan((double)pivot_x / (double)(h - pivot_y)) + angle;
654                 double radius1 = DISTANCE(0, 0, pivot_x, pivot_y) * zoom;
655                 double radius2 = DISTANCE(w, 0, pivot_x, pivot_y) * zoom;
656                 double radius3 = DISTANCE(w, h, pivot_x, pivot_y) * zoom;
657                 double radius4 = DISTANCE(0, h, pivot_x, pivot_y) * zoom;
658
659
660                 float x1 = (dx + pivot_x - cos(angle1) * radius1) * 100 / w;
661                 float y1 = (dy + pivot_y - sin(angle1) * radius1) * 100 / h;
662                 float x2 = (dx + pivot_x + sin(angle2) * radius2) * 100 / w;
663                 float y2 = (dy + pivot_y - cos(angle2) * radius2) * 100 / h;
664                 float x3 = (dx + pivot_x + cos(angle3) * radius3) * 100 / w;
665                 float y3 = (dy + pivot_y + sin(angle3) * radius3) * 100 / h;
666                 float x4 = (dx + pivot_x - sin(angle4) * radius4) * 100 / w;
667                 float y4 = (dy + pivot_y + cos(angle4) * radius4) * 100 / h;
668
669
670                 if(!affine)
671                         affine = new AffineEngine(PluginClient::get_project_smp() + 1,
672                                 PluginClient::get_project_smp() + 1);
673                 global_target_dst->clear_frame();
674
675
676 // printf("MotionMain2::apply_motion %d %.02f %.02f %.02f %.02f %.02f %.02f %.02f %.02f\n",
677 // __LINE__,
678 // x1,
679 // y1,
680 // x2,
681 // y2,
682 // x3,
683 // y3,
684 // x4,
685 // y4);
686
687                 affine->process(global_target_dst,
688                         global_target_src,
689                         0,
690                         AffineEngine::PERSPECTIVE,
691                         x1,
692                         y1,
693                         x2,
694                         y2,
695                         x3,
696                         y3,
697                         x4,
698                         y4,
699                         1);
700         }
701 }
702
703
704
705
706
707
708 int MotionMain2::process_buffer(VFrame **frame,
709         int64_t start_position,
710         double frame_rate)
711 {
712         int need_reconfigure = load_configuration();
713         int color_model = frame[0]->get_color_model();
714         w = frame[0]->get_w();
715         h = frame[0]->get_h();
716
717
718 #ifdef DEBUG
719 printf("MotionMain2::process_buffer 1 start_position=%jd\n", start_position);
720 #endif
721
722
723 // Calculate the source and destination pointers for each of the operations.
724 // Get the layer to track motion in.
725         reference_layer = config.bottom_is_master ?
726                 PluginClient::total_in_buffers - 1 :
727                 0;
728 // Get the layer to apply motion in.
729         target_layer = config.bottom_is_master ?
730                 0 :
731                 PluginClient::total_in_buffers - 1;
732
733
734         output_frame = frame[target_layer];
735
736
737 // Get the position of previous reference frame.
738         int64_t actual_previous_number;
739 // Skip if match frame not available
740         int skip_current = 0;
741
742
743         if(config.tracking_object == MotionScan::TRACK_SINGLE)
744         {
745                 actual_previous_number = config.track_frame;
746                 if(get_direction() == PLAY_REVERSE)
747                         actual_previous_number++;
748                 if(actual_previous_number == start_position)
749                         skip_current = 1;
750         }
751         else
752         {
753                 actual_previous_number = start_position;
754                 if(get_direction() == PLAY_FORWARD)
755                 {
756                         actual_previous_number--;
757                         if(actual_previous_number < get_source_start())
758                                 skip_current = 1;
759                         else
760                         {
761                                 KeyFrame *keyframe = get_prev_keyframe(start_position, 1);
762                                 if(keyframe->position > 0 &&
763                                         actual_previous_number < keyframe->position)
764                                         skip_current = 1;
765                         }
766                 }
767                 else
768                 {
769                         actual_previous_number++;
770                         if(actual_previous_number >= get_source_start() + get_total_len())
771                                 skip_current = 1;
772                         else
773                         {
774                                 KeyFrame *keyframe = get_next_keyframe(start_position, 1);
775                                 if(keyframe->position > 0 &&
776                                         actual_previous_number >= keyframe->position)
777                                         skip_current = 1;
778                         }
779                 }
780
781 // Only count motion since last keyframe
782
783
784         }
785
786
787 // Point 0 must be tracked for any other points to be tracked
788 // Action and Calculation must be something
789         if( !config.global[0] || ( config.action == MotionScan::NOTHING &&
790                         config.calculation == MotionScan::NO_CALCULATE) )
791                 skip_current = 1;
792
793
794 // printf("process_buffer %d %lld %lld %d\n",
795 // skip_current,
796 // previous_frame_number,
797 // actual_previous_number,
798 // need_reconfigure);
799 // Load match frame and reset vectors
800         int need_reload = !skip_current &&
801                 (previous_frame_number != actual_previous_number ||
802                 need_reconfigure);
803         if(need_reload)
804         {
805                 for(int i = 0; i < TOTAL_POINTS; i++)
806                 {
807                         total_dx[i] = 0;
808                         total_dy[i] = 0;
809                 }
810                 previous_frame_number = actual_previous_number;
811         }
812
813
814         if(skip_current)
815         {
816                 for(int i = 0; i < TOTAL_POINTS; i++)
817                 {
818                         total_dx[i] = 0;
819                         total_dy[i] = 0;
820                         current_dx[i] = 0;
821                         current_dy[i] = 0;
822                 }
823         }
824
825
826
827
828 // Get the global pointers.  Here we walk through the sequence of events.
829         if(config.global[0])
830         {
831 // Global reads previous frame and compares
832 // with current frame to get the current translation.
833 // The center of the search area is fixed in compensate mode or
834 // the user value + the accumulation vector in track mode.
835                 if(!prev_global_ref)
836                         prev_global_ref = new VFrame(w, h, color_model, 0);
837                 if(!current_global_ref)
838                         current_global_ref = new VFrame(w, h, color_model, 0);
839
840 // Global loads the current target frame into the src and
841 // writes it to the dst frame with desired translation.
842                 if(!global_target_src)
843                         global_target_src = new VFrame(w, h, color_model, 0);
844                 if(!global_target_dst)
845                         global_target_dst = new VFrame(w, h, color_model, 0);
846
847
848 // Load the global frames
849                 if(need_reload)
850                 {
851                         read_frame(prev_global_ref,
852                                 reference_layer,
853                                 previous_frame_number,
854                                 frame_rate,
855                                 0);
856                 }
857
858                 read_frame(current_global_ref,
859                         reference_layer,
860                         start_position,
861                         frame_rate,
862                         0);
863                 read_frame(global_target_src,
864                         target_layer,
865                         start_position,
866                         frame_rate,
867                         0);
868         }
869
870
871
872
873
874
875
876
877         if(!skip_current)
878         {
879 // Get position change from previous frame to current frame
880                 if(config.global[0])
881                 {
882                         for(int i = 0; i < TOTAL_POINTS; i++)
883                                 if(config.global[i]) scan_motion(i);
884                 }
885
886                 apply_motion();
887         }
888
889
890
891
892 //printf("MotionMain2::process_buffer 90 %d\n", skip_current);
893
894 // Transfer the relevant target frame to the output
895         if(!skip_current)
896         {
897                 frame[target_layer]->copy_from(global_target_dst);
898         }
899         else
900 // Read the target destination directly
901         {
902                 read_frame(frame[target_layer],
903                         target_layer,
904                         start_position,
905                         frame_rate,
906                         0);
907         }
908
909         if(config.draw_vectors)
910         {
911                 for(int i = 0; i < TOTAL_POINTS; i++)
912                         draw_vectors(frame[target_layer], i);
913         }
914
915 #ifdef DEBUG
916 printf("MotionMain2::process_buffer 100 skip_current=%d\n", skip_current);
917 #endif
918         return 0;
919 }
920
921
922
923 #if 0
924
925 void MotionMain2::clamp_scan(int w,
926         int h,
927         int *block_x1,
928         int *block_y1,
929         int *block_x2,
930         int *block_y2,
931         int *scan_x1,
932         int *scan_y1,
933         int *scan_x2,
934         int *scan_y2,
935         int use_absolute)
936 {
937 // printf("MotionMain2::clamp_scan 1 w=%d h=%d block=%d %d %d %d scan=%d %d %d %d absolute=%d\n",
938 // w,
939 // h,
940 // *block_x1,
941 // *block_y1,
942 // *block_x2,
943 // *block_y2,
944 // *scan_x1,
945 // *scan_y1,
946 // *scan_x2,
947 // *scan_y2,
948 // use_absolute);
949
950         if(use_absolute)
951         {
952 // scan is always out of range before block.
953                 if(*scan_x1 < 0)
954                 {
955                         int difference = -*scan_x1;
956                         *block_x1 += difference;
957                         *scan_x1 = 0;
958                 }
959
960                 if(*scan_y1 < 0)
961                 {
962                         int difference = -*scan_y1;
963                         *block_y1 += difference;
964                         *scan_y1 = 0;
965                 }
966
967                 if(*scan_x2 > w)
968                 {
969                         int difference = *scan_x2 - w;
970                         *block_x2 -= difference;
971                         *scan_x2 -= difference;
972                 }
973
974                 if(*scan_y2 > h)
975                 {
976                         int difference = *scan_y2 - h;
977                         *block_y2 -= difference;
978                         *scan_y2 -= difference;
979                 }
980
981                 CLAMP(*scan_x1, 0, w);
982                 CLAMP(*scan_y1, 0, h);
983                 CLAMP(*scan_x2, 0, w);
984                 CLAMP(*scan_y2, 0, h);
985         }
986         else
987         {
988                 if(*scan_x1 < 0)
989                 {
990                         int difference = -*scan_x1;
991                         *block_x1 += difference;
992                         *scan_x2 += difference;
993                         *scan_x1 = 0;
994                 }
995
996                 if(*scan_y1 < 0)
997                 {
998                         int difference = -*scan_y1;
999                         *block_y1 += difference;
1000                         *scan_y2 += difference;
1001                         *scan_y1 = 0;
1002                 }
1003
1004                 if(*scan_x2 - *block_x1 + *block_x2 > w)
1005                 {
1006                         int difference = *scan_x2 - *block_x1 + *block_x2 - w;
1007                         *block_x2 -= difference;
1008                 }
1009
1010                 if(*scan_y2 - *block_y1 + *block_y2 > h)
1011                 {
1012                         int difference = *scan_y2 - *block_y1 + *block_y2 - h;
1013                         *block_y2 -= difference;
1014                 }
1015
1016 //              CLAMP(*scan_x1, 0, w - (*block_x2 - *block_x1));
1017 //              CLAMP(*scan_y1, 0, h - (*block_y2 - *block_y1));
1018 //              CLAMP(*scan_x2, 0, w - (*block_x2 - *block_x1));
1019 //              CLAMP(*scan_y2, 0, h - (*block_y2 - *block_y1));
1020         }
1021
1022 // Sanity checks which break the calculation but should never happen if the
1023 // center of the block is inside the frame.
1024         CLAMP(*block_x1, 0, w);
1025         CLAMP(*block_x2, 0, w);
1026         CLAMP(*block_y1, 0, h);
1027         CLAMP(*block_y2, 0, h);
1028
1029 // printf("MotionMain2::clamp_scan 2 w=%d h=%d block=%d %d %d %d scan=%d %d %d %d absolute=%d\n",
1030 // w,
1031 // h,
1032 // *block_x1,
1033 // *block_y1,
1034 // *block_x2,
1035 // *block_y2,
1036 // *scan_x1,
1037 // *scan_y1,
1038 // *scan_x2,
1039 // *scan_y2,
1040 // use_absolute);
1041 }
1042
1043
1044 #endif // 0
1045
1046 void MotionMain2::get_current_vector(float *origin_x,
1047         float *origin_y,
1048         float *current_x1,
1049         float *current_y1,
1050         float *current_x2,
1051         float *current_y2,
1052         int point)
1053 {
1054         int w = get_output()->get_w();
1055         int h = get_output()->get_h();
1056         float temp1;
1057         float temp2;
1058         float temp3;
1059         float temp4;
1060         float temp5;
1061         float temp6;
1062         if(!origin_x) origin_x = &temp1;
1063         if(!origin_y) origin_y = &temp2;
1064         if(!current_x1) current_x1 = &temp3;
1065         if(!current_y1) current_y1 = &temp4;
1066         if(!current_x2) current_x2 = &temp5;
1067         if(!current_y2) current_y2 = &temp6;
1068
1069         *origin_x = 0;
1070         *origin_y = 0;
1071         *current_x1 = 0.0;
1072         *current_y1 = 0.0;
1073         *current_x2 = 0.0;
1074         *current_y2 = 0.0;
1075
1076
1077         if(config.global[point])
1078         {
1079 // Get vector
1080 // Start of vector is center of previous block.
1081 // End of vector is total accumulation.
1082                 if(config.tracking_object == MotionScan::TRACK_SINGLE)
1083                 {
1084                         (*origin_x) = (*current_x1) = ((float)config.block_x[point] *
1085                                 w /
1086                                 100);
1087                         (*origin_y) = (*current_y1) = ((float)config.block_y[point] *
1088                                 h /
1089                                 100);
1090                         (*current_x2) = (*current_x1) + (float)total_dx[point] / OVERSAMPLE;
1091                         (*current_y2) = (*current_y1) + (float)total_dy[point] / OVERSAMPLE;
1092                 }
1093                 else
1094 // Start of vector is center of previous block.
1095 // End of vector is current change.
1096                 if(config.tracking_object == MotionScan::PREVIOUS_SAME_BLOCK)
1097                 {
1098                         (*origin_x) = (*current_x1) = ((float)config.block_x[point] *
1099                                 w /
1100                                 100);
1101                         (*origin_y) = (*current_y1) = ((float)config.block_y[point] *
1102                                 h /
1103                                 100);
1104                         (*current_x2) = (*origin_x) + (float)current_dx[point] / OVERSAMPLE;
1105                         (*current_y2) = (*origin_y) + (float)current_dy[point] / OVERSAMPLE;
1106                 }
1107                 else
1108                 {
1109                         (*origin_x) = (float)config.block_x[point] *
1110                                 w /
1111                                 100;
1112                         (*origin_y) = (float)config.block_y[point] *
1113                                 h /
1114                                 100;
1115                         (*current_x1) = ((*origin_x) +
1116                                 (float)(total_dx[point] - current_dx[point]) /
1117                                 OVERSAMPLE);
1118                         (*current_y1) = ((*origin_y) +
1119                                 (float)(total_dy[point] - current_dy[point]) /
1120                                 OVERSAMPLE);
1121                         (*current_x2) = ((*origin_x) +
1122                                 (float)total_dx[point] /
1123                                 OVERSAMPLE);
1124                         (*current_y2) = ((*origin_y) +
1125                                 (float)total_dy[point] /
1126                                 OVERSAMPLE);
1127                 }
1128         }
1129 }
1130
1131
1132 void MotionMain2::draw_vectors(VFrame *frame, int point)
1133 {
1134         int w = frame->get_w();
1135         int h = frame->get_h();
1136         float global_x1, global_y1;
1137         float global_x2, global_y2;
1138         int block_x, block_y;
1139         int block_w, block_h;
1140         int block_x1, block_y1;
1141         int block_x2, block_y2;
1142         int search_w, search_h;
1143         int search_x1, search_y1;
1144         int search_x2, search_y2;
1145         int origin_offset_x;
1146         int origin_offset_y;
1147
1148         if(!config.draw_vectors[point]) return;
1149
1150
1151         if(config.global[point])
1152         {
1153 // Get vector
1154                 get_current_vector(0,
1155                         0,
1156                         &global_x1,
1157                         &global_y1,
1158                         &global_x2,
1159                         &global_y2,
1160                         point);
1161
1162
1163 // Draw destination rectangle
1164                 if(config.action == MotionScan::NOTHING ||
1165                         config.action == MotionScan::TRACK)
1166                 {
1167                         block_x = (int)global_x2;
1168                         block_y = (int)global_y2;
1169                 }
1170                 else
1171 // Draw source rectangle
1172                 {
1173                         block_x = (int)global_x1;
1174                         block_y = (int)global_y1;
1175                 }
1176                 block_w = config.global_block_w[point] * w / 100;
1177                 block_h = config.global_block_h[point] * h / 100;
1178                 origin_offset_x = config.global_origin_x[point] * w / 100;
1179                 origin_offset_y = config.global_origin_y[point] * h / 100;
1180                 block_x1 = block_x - block_w / 2;
1181                 block_y1 = block_y - block_h / 2;
1182                 block_x2 = block_x + block_w / 2;
1183                 block_y2 = block_y + block_h / 2;
1184                 search_w = config.global_range_w[point] * w / 100;
1185                 search_h = config.global_range_h[point] * h / 100;
1186                 search_x1 = block_x1 + origin_offset_x - search_w / 2;
1187                 search_y1 = block_y1 + origin_offset_y - search_h / 2;
1188                 search_x2 = block_x2 + origin_offset_x + search_w / 2;
1189                 search_y2 = block_y2 + origin_offset_y + search_h / 2;
1190
1191 // printf("MotionMain2::draw_vectors %d %d %d %d %d %d %d %d %d %d %d %d\n",
1192 // global_x1,
1193 // global_y1,
1194 // block_w,
1195 // block_h,
1196 // block_x1,
1197 // block_y1,
1198 // block_x2,
1199 // block_y2,
1200 // search_x1,
1201 // search_y1,
1202 // search_x2,
1203 // search_y2);
1204
1205                 MotionScan::clamp_scan(w,
1206                         h,
1207                         &block_x1,
1208                         &block_y1,
1209                         &block_x2,
1210                         &block_y2,
1211                         &search_x1,
1212                         &search_y1,
1213                         &search_x2,
1214                         &search_y2,
1215                         1);
1216
1217 // Vector
1218                 draw_arrow(frame, (int)global_x1, (int)global_y1, (int)global_x2, (int)global_y2);
1219
1220 // Macroblock
1221                 draw_line(frame, block_x1, block_y1, block_x2, block_y1);
1222                 draw_line(frame, block_x2, block_y1, block_x2, block_y2);
1223                 draw_line(frame, block_x2, block_y2, block_x1, block_y2);
1224                 draw_line(frame, block_x1, block_y2, block_x1, block_y1);
1225
1226
1227 // Search area
1228                 draw_line(frame, search_x1, search_y1, search_x2, search_y1);
1229                 draw_line(frame, search_x2, search_y1, search_x2, search_y2);
1230                 draw_line(frame, search_x2, search_y2, search_x1, search_y2);
1231                 draw_line(frame, search_x1, search_y2, search_x1, search_y1);
1232         }
1233 }
1234
1235
1236
1237 void MotionMain2::draw_pixel(VFrame *frame, int x, int y)
1238 {
1239         if(!(x >= 0 && y >= 0 && x < frame->get_w() && y < frame->get_h())) return;
1240
1241 #define DRAW_PIXEL(x, y, components, do_yuv, max, type) \
1242 { \
1243         type **rows = (type**)frame->get_rows(); \
1244         rows[y][x * components] = max - rows[y][x * components]; \
1245         if(!do_yuv) \
1246         { \
1247                 rows[y][x * components + 1] = max - rows[y][x * components + 1]; \
1248                 rows[y][x * components + 2] = max - rows[y][x * components + 2]; \
1249         } \
1250         else \
1251         { \
1252                 rows[y][x * components + 1] = (max / 2 + 1) - rows[y][x * components + 1]; \
1253                 rows[y][x * components + 2] = (max / 2 + 1) - rows[y][x * components + 2]; \
1254         } \
1255         if(components == 4) \
1256                 rows[y][x * components + 3] = max; \
1257 }
1258
1259
1260         switch(frame->get_color_model())
1261         {
1262                 case BC_RGB888:
1263                         DRAW_PIXEL(x, y, 3, 0, 0xff, unsigned char);
1264                         break;
1265                 case BC_RGBA8888:
1266                         DRAW_PIXEL(x, y, 4, 0, 0xff, unsigned char);
1267                         break;
1268                 case BC_RGB_FLOAT:
1269                         DRAW_PIXEL(x, y, 3, 0, 1.0, float);
1270                         break;
1271                 case BC_RGBA_FLOAT:
1272                         DRAW_PIXEL(x, y, 4, 0, 1.0, float);
1273                         break;
1274                 case BC_YUV888:
1275                         DRAW_PIXEL(x, y, 3, 1, 0xff, unsigned char);
1276                         break;
1277                 case BC_YUVA8888:
1278                         DRAW_PIXEL(x, y, 4, 1, 0xff, unsigned char);
1279                         break;
1280                 case BC_RGB161616:
1281                         DRAW_PIXEL(x, y, 3, 0, 0xffff, uint16_t);
1282                         break;
1283                 case BC_YUV161616:
1284                         DRAW_PIXEL(x, y, 3, 1, 0xffff, uint16_t);
1285                         break;
1286                 case BC_RGBA16161616:
1287                         DRAW_PIXEL(x, y, 4, 0, 0xffff, uint16_t);
1288                         break;
1289                 case BC_YUVA16161616:
1290                         DRAW_PIXEL(x, y, 4, 1, 0xffff, uint16_t);
1291                         break;
1292         }
1293 }
1294
1295
1296 void MotionMain2::draw_line(VFrame *frame, int x1, int y1, int x2, int y2)
1297 {
1298         int w = labs(x2 - x1);
1299         int h = labs(y2 - y1);
1300 //printf("MotionMain2::draw_line 1 %d %d %d %d\n", x1, y1, x2, y2);
1301
1302         if(!w && !h)
1303         {
1304                 draw_pixel(frame, x1, y1);
1305         }
1306         else
1307         if(w > h)
1308         {
1309 // Flip coordinates so x1 < x2
1310                 if(x2 < x1)
1311                 {
1312                         y2 ^= y1;
1313                         y1 ^= y2;
1314                         y2 ^= y1;
1315                         x1 ^= x2;
1316                         x2 ^= x1;
1317                         x1 ^= x2;
1318                 }
1319                 int numerator = y2 - y1;
1320                 int denominator = x2 - x1;
1321                 for(int i = x1; i < x2; i++)
1322                 {
1323                         int y = y1 + (int64_t)(i - x1) * (int64_t)numerator / (int64_t)denominator;
1324                         draw_pixel(frame, i, y);
1325                 }
1326         }
1327         else
1328         {
1329 // Flip coordinates so y1 < y2
1330                 if(y2 < y1)
1331                 {
1332                         y2 ^= y1;
1333                         y1 ^= y2;
1334                         y2 ^= y1;
1335                         x1 ^= x2;
1336                         x2 ^= x1;
1337                         x1 ^= x2;
1338                 }
1339                 int numerator = x2 - x1;
1340                 int denominator = y2 - y1;
1341                 for(int i = y1; i < y2; i++)
1342                 {
1343                         int x = x1 + (int64_t)(i - y1) * (int64_t)numerator / (int64_t)denominator;
1344                         draw_pixel(frame, x, i);
1345                 }
1346         }
1347 //printf("MotionMain2::draw_line 2\n");
1348 }
1349
1350 #define ARROW_SIZE 10
1351 void MotionMain2::draw_arrow(VFrame *frame, int x1, int y1, int x2, int y2)
1352 {
1353         double angle = atan((float)(y2 - y1) / (float)(x2 - x1));
1354         double angle1 = angle + (float)145 / 360 * 2 * 3.14159265;
1355         double angle2 = angle - (float)145 / 360 * 2 * 3.14159265;
1356         int x3;
1357         int y3;
1358         int x4;
1359         int y4;
1360         if(x2 < x1)
1361         {
1362                 x3 = x2 - (int)(ARROW_SIZE * cos(angle1));
1363                 y3 = y2 - (int)(ARROW_SIZE * sin(angle1));
1364                 x4 = x2 - (int)(ARROW_SIZE * cos(angle2));
1365                 y4 = y2 - (int)(ARROW_SIZE * sin(angle2));
1366         }
1367         else
1368         {
1369                 x3 = x2 + (int)(ARROW_SIZE * cos(angle1));
1370                 y3 = y2 + (int)(ARROW_SIZE * sin(angle1));
1371                 x4 = x2 + (int)(ARROW_SIZE * cos(angle2));
1372                 y4 = y2 + (int)(ARROW_SIZE * sin(angle2));
1373         }
1374
1375 // Main vector
1376         draw_line(frame, x1, y1, x2, y2);
1377 //      draw_line(frame, x1, y1 + 1, x2, y2 + 1);
1378
1379 // Arrow line
1380         if(abs(y2 - y1) || abs(x2 - x1)) draw_line(frame, x2, y2, x3, y3);
1381 //      draw_line(frame, x2, y2 + 1, x3, y3 + 1);
1382 // Arrow line
1383         if(abs(y2 - y1) || abs(x2 - x1)) draw_line(frame, x2, y2, x4, y4);
1384 //      draw_line(frame, x2, y2 + 1, x4, y4 + 1);
1385 }
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396 #if 0
1397
1398
1399
1400 #define ABS_DIFF(type, temp_type, multiplier, components) \
1401 { \
1402         temp_type result_temp = 0; \
1403         for(int i = 0; i < h; i++) \
1404         { \
1405                 type *prev_row = (type*)prev_ptr; \
1406                 type *current_row = (type*)current_ptr; \
1407                 for(int j = 0; j < w; j++) \
1408                 { \
1409                         for(int k = 0; k < 3; k++) \
1410                         { \
1411                                 temp_type difference; \
1412                                 difference = *prev_row++ - *current_row++; \
1413                                 if(difference < 0) \
1414                                         result_temp -= difference; \
1415                                 else \
1416                                         result_temp += difference; \
1417                         } \
1418                         if(components == 4) \
1419                         { \
1420                                 prev_row++; \
1421                                 current_row++; \
1422                         } \
1423                 } \
1424                 prev_ptr += row_bytes; \
1425                 current_ptr += row_bytes; \
1426         } \
1427         result = (int64_t)(result_temp * multiplier); \
1428 }
1429
1430 int64_t MotionMain2::abs_diff(unsigned char *prev_ptr,
1431         unsigned char *current_ptr,
1432         int row_bytes,
1433         int w,
1434         int h,
1435         int color_model)
1436 {
1437         int64_t result = 0;
1438         switch(color_model)
1439         {
1440                 case BC_RGB888:
1441                         ABS_DIFF(unsigned char, int64_t, 1, 3)
1442                         break;
1443                 case BC_RGBA8888:
1444                         ABS_DIFF(unsigned char, int64_t, 1, 4)
1445                         break;
1446                 case BC_RGB_FLOAT:
1447                         ABS_DIFF(float, double, 0x10000, 3)
1448                         break;
1449                 case BC_RGBA_FLOAT:
1450                         ABS_DIFF(float, double, 0x10000, 4)
1451                         break;
1452                 case BC_YUV888:
1453                         ABS_DIFF(unsigned char, int64_t, 1, 3)
1454                         break;
1455                 case BC_YUVA8888:
1456                         ABS_DIFF(unsigned char, int64_t, 1, 4)
1457                         break;
1458                 case BC_YUV161616:
1459                         ABS_DIFF(uint16_t, int64_t, 1, 3)
1460                         break;
1461                 case BC_YUVA16161616:
1462                         ABS_DIFF(uint16_t, int64_t, 1, 4)
1463                         break;
1464         }
1465         return result;
1466 }
1467
1468
1469
1470 #define ABS_DIFF_SUB(type, temp_type, multiplier, components) \
1471 { \
1472         temp_type result_temp = 0; \
1473         temp_type y2_fraction = sub_y * 0x100 / OVERSAMPLE; \
1474         temp_type y1_fraction = 0x100 - y2_fraction; \
1475         temp_type x2_fraction = sub_x * 0x100 / OVERSAMPLE; \
1476         temp_type x1_fraction = 0x100 - x2_fraction; \
1477         for(int i = 0; i < h_sub; i++) \
1478         { \
1479                 type *prev_row1 = (type*)prev_ptr; \
1480                 type *prev_row2 = (type*)prev_ptr + components; \
1481                 type *prev_row3 = (type*)(prev_ptr + row_bytes); \
1482                 type *prev_row4 = (type*)(prev_ptr + row_bytes) + components; \
1483                 type *current_row = (type*)current_ptr; \
1484                 for(int j = 0; j < w_sub; j++) \
1485                 { \
1486                         for(int k = 0; k < 3; k++) \
1487                         { \
1488                                 temp_type difference; \
1489                                 temp_type prev_value = \
1490                                         (*prev_row1++ * x1_fraction * y1_fraction + \
1491                                         *prev_row2++ * x2_fraction * y1_fraction + \
1492                                         *prev_row3++ * x1_fraction * y2_fraction + \
1493                                         *prev_row4++ * x2_fraction * y2_fraction) / \
1494                                         0x100 / 0x100; \
1495                                 temp_type current_value = *current_row++; \
1496                                 difference = prev_value - current_value; \
1497                                 if(difference < 0) \
1498                                         result_temp -= difference; \
1499                                 else \
1500                                         result_temp += difference; \
1501                         } \
1502  \
1503                         if(components == 4) \
1504                         { \
1505                                 prev_row1++; \
1506                                 prev_row2++; \
1507                                 prev_row3++; \
1508                                 prev_row4++; \
1509                                 current_row++; \
1510                         } \
1511                 } \
1512                 prev_ptr += row_bytes; \
1513                 current_ptr += row_bytes; \
1514         } \
1515         result = (int64_t)(result_temp * multiplier); \
1516 }
1517
1518
1519
1520
1521 int64_t MotionMain2::abs_diff_sub(unsigned char *prev_ptr,
1522         unsigned char *current_ptr,
1523         int row_bytes,
1524         int w,
1525         int h,
1526         int color_model,
1527         int sub_x,
1528         int sub_y)
1529 {
1530         int h_sub = h - 1;
1531         int w_sub = w - 1;
1532         int64_t result = 0;
1533
1534         switch(color_model)
1535         {
1536                 case BC_RGB888:
1537                         ABS_DIFF_SUB(unsigned char, int64_t, 1, 3)
1538                         break;
1539                 case BC_RGBA8888:
1540                         ABS_DIFF_SUB(unsigned char, int64_t, 1, 4)
1541                         break;
1542                 case BC_RGB_FLOAT:
1543                         ABS_DIFF_SUB(float, double, 0x10000, 3)
1544                         break;
1545                 case BC_RGBA_FLOAT:
1546                         ABS_DIFF_SUB(float, double, 0x10000, 4)
1547                         break;
1548                 case BC_YUV888:
1549                         ABS_DIFF_SUB(unsigned char, int64_t, 1, 3)
1550                         break;
1551                 case BC_YUVA8888:
1552                         ABS_DIFF_SUB(unsigned char, int64_t, 1, 4)
1553                         break;
1554                 case BC_YUV161616:
1555                         ABS_DIFF_SUB(uint16_t, int64_t, 1, 3)
1556                         break;
1557                 case BC_YUVA16161616:
1558                         ABS_DIFF_SUB(uint16_t, int64_t, 1, 4)
1559                         break;
1560         }
1561         return result;
1562 }
1563
1564
1565
1566
1567
1568 MotionScanPackage::MotionScanPackage()
1569  : LoadPackage()
1570 {
1571         valid = 1;
1572 }
1573
1574
1575
1576
1577
1578
1579 MotionScanUnit::MotionScanUnit(MotionScan *server,
1580         MotionMain2 *plugin)
1581  : LoadClient(server)
1582 {
1583         this->plugin = plugin;
1584         this->server = server;
1585         cache_lock = new Mutex("MotionScanUnit::cache_lock");
1586 }
1587
1588 MotionScanUnit::~MotionScanUnit()
1589 {
1590         delete cache_lock;
1591 }
1592
1593
1594
1595 void MotionScanUnit::process_package(LoadPackage *package)
1596 {
1597         MotionScanPackage *pkg = (MotionScanPackage*)package;
1598         int w = server->current_frame->get_w();
1599         int h = server->current_frame->get_h();
1600         int color_model = server->current_frame->get_color_model();
1601         int pixel_size = cmodel_calculate_pixelsize(color_model);
1602         int row_bytes = server->current_frame->get_bytes_per_line();
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616 // Single pixel
1617         if(!server->subpixel)
1618         {
1619                 int search_x = pkg->scan_x1 + (pkg->pixel % (pkg->scan_x2 - pkg->scan_x1));
1620                 int search_y = pkg->scan_y1 + (pkg->pixel / (pkg->scan_x2 - pkg->scan_x1));
1621
1622 // Try cache
1623                 pkg->difference1 = server->get_cache(search_x, search_y);
1624                 if(pkg->difference1 < 0)
1625                 {
1626 //printf("MotionScanUnit::process_package 1 %d %d\n",
1627 //search_x, search_y, pkg->block_x2 - pkg->block_x1, pkg->block_y2 - pkg->block_y1);
1628 // Pointers to first pixel in each block
1629                         unsigned char *prev_ptr = server->previous_frame->get_rows()[
1630                                 search_y] +
1631                                 search_x * pixel_size;
1632                         unsigned char *current_ptr = server->current_frame->get_rows()[
1633                                 pkg->block_y1] +
1634                                 pkg->block_x1 * pixel_size;
1635 // Scan block
1636                         pkg->difference1 = plugin->abs_diff(prev_ptr,
1637                                 current_ptr,
1638                                 row_bytes,
1639                                 pkg->block_x2 - pkg->block_x1,
1640                                 pkg->block_y2 - pkg->block_y1,
1641                                 color_model);
1642 //printf("MotionScanUnit::process_package 2\n");
1643                         server->put_cache(search_x, search_y, pkg->difference1);
1644                 }
1645         }
1646
1647
1648
1649
1650
1651
1652
1653         else
1654
1655
1656
1657
1658
1659
1660
1661
1662 // Sub pixel
1663         {
1664                 int sub_x = pkg->pixel % (OVERSAMPLE * 2 - 1) + 1;
1665                 int sub_y = pkg->pixel / (OVERSAMPLE * 2 - 1) + 1;
1666
1667                 if(plugin->config.horizontal_only)
1668                 {
1669                         sub_y = 0;
1670                 }
1671
1672                 if(plugin->config.vertical_only)
1673                 {
1674                         sub_x = 0;
1675                 }
1676
1677                 int search_x = pkg->scan_x1 + sub_x / OVERSAMPLE;
1678                 int search_y = pkg->scan_y1 + sub_y / OVERSAMPLE;
1679                 sub_x %= OVERSAMPLE;
1680                 sub_y %= OVERSAMPLE;
1681
1682
1683                 unsigned char *prev_ptr = server->previous_frame->get_rows()[
1684                         search_y] +
1685                         search_x * pixel_size;
1686                 unsigned char *current_ptr = server->current_frame->get_rows()[
1687                         pkg->block_y1] +
1688                         pkg->block_x1 * pixel_size;
1689
1690 // With subpixel, there are two ways to compare each position, one by shifting
1691 // the previous frame and two by shifting the current frame.
1692                 pkg->difference1 = plugin->abs_diff_sub(prev_ptr,
1693                         current_ptr,
1694                         row_bytes,
1695                         pkg->block_x2 - pkg->block_x1,
1696                         pkg->block_y2 - pkg->block_y1,
1697                         color_model,
1698                         sub_x,
1699                         sub_y);
1700                 pkg->difference2 = plugin->abs_diff_sub(current_ptr,
1701                         prev_ptr,
1702                         row_bytes,
1703                         pkg->block_x2 - pkg->block_x1,
1704                         pkg->block_y2 - pkg->block_y1,
1705                         color_model,
1706                         sub_x,
1707                         sub_y);
1708 // printf("MotionScanUnit::process_package sub_x=%d sub_y=%d search_x=%d search_y=%d diff1=%lld diff2=%lld\n",
1709 // sub_x,
1710 // sub_y,
1711 // search_x,
1712 // search_y,
1713 // pkg->difference1,
1714 // pkg->difference2);
1715         }
1716
1717
1718
1719
1720
1721 }
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732 int64_t MotionScanUnit::get_cache(int x, int y)
1733 {
1734         int64_t result = -1;
1735         cache_lock->lock("MotionScanUnit::get_cache");
1736         for(int i = 0; i < cache.total; i++)
1737         {
1738                 MotionScanCache *ptr = cache.values[i];
1739                 if(ptr->x == x && ptr->y == y)
1740                 {
1741                         result = ptr->difference;
1742                         break;
1743                 }
1744         }
1745         cache_lock->unlock();
1746         return result;
1747 }
1748
1749 void MotionScanUnit::put_cache(int x, int y, int64_t difference)
1750 {
1751         MotionScanCache *ptr = new MotionScanCache(x, y, difference);
1752         cache_lock->lock("MotionScanUnit::put_cache");
1753         cache.append(ptr);
1754         cache_lock->unlock();
1755 }
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767 MotionScan::MotionScan(MotionMain2 *plugin,
1768         int total_clients,
1769         int total_packages)
1770  : LoadServer(
1771 //1, 1
1772 total_clients, total_packages
1773 )
1774 {
1775         this->plugin = plugin;
1776         cache_lock = new Mutex("MotionScan::cache_lock");
1777 }
1778
1779 MotionScan::~MotionScan()
1780 {
1781         delete cache_lock;
1782 }
1783
1784
1785 void MotionScan::init_packages()
1786 {
1787 // Set package coords
1788         for(int i = 0; i < get_total_packages(); i++)
1789         {
1790                 MotionScanPackage *pkg = (MotionScanPackage*)get_package(i);
1791
1792                 pkg->block_x1 = block_x1;
1793                 pkg->block_x2 = block_x2;
1794                 pkg->block_y1 = block_y1;
1795                 pkg->block_y2 = block_y2;
1796                 pkg->scan_x1 = scan_x1;
1797                 pkg->scan_x2 = scan_x2;
1798                 pkg->scan_y1 = scan_y1;
1799                 pkg->scan_y2 = scan_y2;
1800                 pkg->pixel = (int64_t)i * (int64_t)total_pixels / (int64_t)total_steps;
1801                 pkg->difference1 = 0;
1802                 pkg->difference2 = 0;
1803                 pkg->dx = 0;
1804                 pkg->dy = 0;
1805                 pkg->valid = 1;
1806         }
1807 }
1808
1809 LoadClient* MotionScan::new_client()
1810 {
1811         return new MotionScanUnit(this, plugin);
1812 }
1813
1814 LoadPackage* MotionScan::new_package()
1815 {
1816         return new MotionScanPackage;
1817 }
1818
1819
1820 void MotionScan::scan_frame(VFrame *previous_frame,
1821         VFrame *current_frame,
1822         int point)
1823 {
1824         this->previous_frame = previous_frame;
1825         this->current_frame = current_frame;
1826         this->point = point;
1827         subpixel = 0;
1828
1829         cache.remove_all_objects();
1830
1831
1832 // Single macroblock
1833         int w = current_frame->get_w();
1834         int h = current_frame->get_h();
1835
1836 // Initial search parameters
1837         int scan_w = w * plugin->config.global_range_w[point] / 100;
1838         int scan_h = h * plugin->config.global_range_h[point] / 100;
1839         int block_w = w * plugin->config.global_block_w[point] / 100;
1840         int block_h = h * plugin->config.global_block_h[point] / 100;
1841
1842 // Location of block in previous frame
1843         block_x1 = (int)(w * plugin->config.block_x[point] / 100 - block_w / 2);
1844         block_y1 = (int)(h * plugin->config.block_y[point] / 100 - block_h / 2);
1845         block_x2 = (int)(w * plugin->config.block_x[point] / 100 + block_w / 2);
1846         block_y2 = (int)(h * plugin->config.block_y[point] / 100 + block_h / 2);
1847
1848 // Offset to location of previous block.  This offset needn't be very accurate
1849 // since it's the offset of the previous image and current image we want.
1850         if(plugin->config.tracking_object == MotionScan::TRACK_PREVIOUS)
1851         {
1852                 block_x1 += plugin->total_dx[point] / OVERSAMPLE;
1853                 block_y1 += plugin->total_dy[point] / OVERSAMPLE;
1854                 block_x2 += plugin->total_dx[point] / OVERSAMPLE;
1855                 block_y2 += plugin->total_dy[point] / OVERSAMPLE;
1856         }
1857
1858         skip = 0;
1859
1860         switch(plugin->config.calculation)
1861         {
1862 // Don't calculate
1863                 case MotionScan::NO_CALCULATE:
1864                         dx_result = 0;
1865                         dy_result = 0;
1866                         skip = 1;
1867                         break;
1868
1869                 case MotionScan::LOAD:
1870                 {
1871 printf("MotionScan::scan_frame %d\n", __LINE__);
1872 // Load result from disk
1873                         char string[BCTEXTLEN];
1874                         sprintf(string, "%s%06d",
1875                                 MOTION_FILE,
1876                                 plugin->get_source_position());
1877                         FILE *input;
1878                         input = fopen(string, "r");
1879                         if(input)
1880                         {
1881                                 for(int i = 0; i <= point; i++)
1882                                 {
1883                                         fscanf(input,
1884                                                 "%d %d",
1885                                                 &dx_result,
1886                                                 &dy_result);
1887                                 }
1888                                 fclose(input);
1889                                 skip = 1;
1890                         }
1891                         break;
1892                 }
1893
1894 // Scan from scratch
1895                 default:
1896                         skip = 0;
1897                         break;
1898         }
1899
1900 // Perform scan
1901         if(!skip)
1902         {
1903 printf("MotionScan::scan_frame %d\n", __LINE__);
1904 // Calculate center of search area in current frame
1905                 int origin_offset_x = plugin->config.global_origin_x[point] * w / 100;
1906                 int origin_offset_y = plugin->config.global_origin_y[point] * h / 100;
1907                 int x_result = block_x1 + origin_offset_x;
1908                 int y_result = block_y1 + origin_offset_y;
1909
1910 // printf("MotionScan::scan_frame 1 %d %d %d %d %d %d %d %d\n",
1911 // block_x1 + block_w / 2,
1912 // block_y1 + block_h / 2,
1913 // block_w,
1914 // block_h,
1915 // block_x1,
1916 // block_y1,
1917 // block_x2,
1918 // block_y2);
1919
1920                 while(1)
1921                 {
1922                         scan_x1 = x_result - scan_w / 2;
1923                         scan_y1 = y_result - scan_h / 2;
1924                         scan_x2 = x_result + scan_w / 2;
1925                         scan_y2 = y_result + scan_h / 2;
1926
1927
1928
1929 // Zero out requested values
1930                         if(plugin->config.horizontal_only)
1931                         {
1932                                 scan_y1 = block_y1;
1933                                 scan_y2 = block_y1 + 1;
1934                         }
1935                         if(plugin->config.vertical_only)
1936                         {
1937                                 scan_x1 = block_x1;
1938                                 scan_x2 = block_x1 + 1;
1939                         }
1940
1941 // printf("MotionScan::scan_frame 1 %d %d %d %d %d %d %d %d\n",
1942 // block_x1,
1943 // block_y1,
1944 // block_x2,
1945 // block_y2,
1946 // scan_x1,
1947 // scan_y1,
1948 // scan_x2,
1949 // scan_y2);
1950 // Clamp the block coords before the scan so we get useful scan coords.
1951                         MotionScan::clamp_scan(w,
1952                                 h,
1953                                 &block_x1,
1954                                 &block_y1,
1955                                 &block_x2,
1956                                 &block_y2,
1957                                 &scan_x1,
1958                                 &scan_y1,
1959                                 &scan_x2,
1960                                 &scan_y2,
1961                                 0);
1962 // printf("MotionScan::scan_frame 1\n    block_x1=%d block_y1=%d block_x2=%d block_y2=%d\n    scan_x1=%d scan_y1=%d scan_x2=%d scan_y2=%d\n    x_result=%d y_result=%d\n",
1963 // block_x1,
1964 // block_y1,
1965 // block_x2,
1966 // block_y2,
1967 // scan_x1,
1968 // scan_y1,
1969 // scan_x2,
1970 // scan_y2,
1971 // x_result,
1972 // y_result);
1973
1974
1975 // Give up if invalid coords.
1976                         if(scan_y2 <= scan_y1 ||
1977                                 scan_x2 <= scan_x1 ||
1978                                 block_x2 <= block_x1 ||
1979                                 block_y2 <= block_y1)
1980                                 break;
1981
1982
1983 // For subpixel, the top row and left column are skipped
1984                         if(subpixel)
1985                         {
1986
1987                                 if(plugin->config.horizontal_only ||
1988                                         plugin->config.vertical_only)
1989                                 {
1990                                         total_pixels = 4 * OVERSAMPLE * OVERSAMPLE - 4 * OVERSAMPLE;
1991                                 }
1992                                 else
1993                                 {
1994                                         total_pixels = 4 * OVERSAMPLE;
1995                                 }
1996
1997                                 total_steps = total_pixels;
1998
1999                                 set_package_count(total_steps);
2000                                 process_packages();
2001
2002 // Get least difference
2003                                 int64_t min_difference = -1;
2004                                 for(int i = 0; i < get_total_packages(); i++)
2005                                 {
2006                                         MotionScanPackage *pkg = (MotionScanPackage*)get_package(i);
2007                                         if(pkg->difference1 < min_difference || min_difference == -1)
2008                                         {
2009                                                 min_difference = pkg->difference1;
2010
2011                                                 if(plugin->config.vertical_only)
2012                                                         x_result = scan_x1 * OVERSAMPLE;
2013                                                 else
2014                                                         x_result = scan_x1 * OVERSAMPLE +
2015                                                                 (pkg->pixel % (OVERSAMPLE * 2 - 1)) + 1;
2016
2017                                                 if(plugin->config.horizontal_only)
2018                                                         y_result = scan_y1 * OVERSAMPLE;
2019                                                 else
2020                                                         y_result = scan_y1 * OVERSAMPLE +
2021                                                                 (pkg->pixel / (OVERSAMPLE * 2 - 1)) + 1;
2022
2023
2024 // Fill in results
2025                                                 dx_result = block_x1 * OVERSAMPLE - x_result;
2026                                                 dy_result = block_y1 * OVERSAMPLE - y_result;
2027                                         }
2028
2029                                         if(pkg->difference2 < min_difference)
2030                                         {
2031                                                 min_difference = pkg->difference2;
2032
2033                                                 if(plugin->config.vertical_only)
2034                                                         x_result = scan_x1 * OVERSAMPLE;
2035                                                 else
2036                                                         x_result = scan_x2 * OVERSAMPLE -
2037                                                                 ((pkg->pixel % (OVERSAMPLE * 2 - 1)) + 1);
2038
2039                                                 if(plugin->config.horizontal_only)
2040                                                         y_result = scan_y1 * OVERSAMPLE;
2041                                                 else
2042                                                         y_result = scan_y2 * OVERSAMPLE -
2043                                                                 ((pkg->pixel / (OVERSAMPLE * 2 - 1)) + 1);
2044
2045                                                 dx_result = block_x1 * OVERSAMPLE - x_result;
2046                                                 dy_result = block_y1 * OVERSAMPLE - y_result;
2047                                         }
2048                                 }
2049
2050
2051 //printf("MotionScan::scan_frame 1 %d %d %d %d\n", block_x1, block_y1, x_result, y_result);
2052                                 break;
2053                         }
2054                         else
2055                         {
2056
2057                                 total_pixels = (scan_x2 - scan_x1) * (scan_y2 - scan_y1);
2058                                 total_steps = MIN(plugin->config.global_positions, total_pixels);
2059
2060                                 set_package_count(total_steps);
2061                                 process_packages();
2062
2063 // Get least difference
2064                                 int64_t min_difference = -1;
2065                                 for(int i = 0; i < get_total_packages(); i++)
2066                                 {
2067                                         MotionScanPackage *pkg = (MotionScanPackage*)get_package(i);
2068                                         if(pkg->difference1 < min_difference || min_difference == -1)
2069                                         {
2070                                                 min_difference = pkg->difference1;
2071                                                 x_result = scan_x1 + (pkg->pixel % (scan_x2 - scan_x1));
2072                                                 y_result = scan_y1 + (pkg->pixel / (scan_x2 - scan_x1));
2073                                                 x_result *= OVERSAMPLE;
2074                                                 y_result *= OVERSAMPLE;
2075                                         }
2076                                 }
2077
2078
2079
2080 // printf("MotionScan::scan_frame 10 total_steps=%d total_pixels=%d subpixel=%d\n",
2081 // total_steps,
2082 // total_pixels,
2083 // subpixel);
2084 //
2085 // printf("     scan w=%d h=%d scan x1=%d y1=%d x2=%d y2=%d\n",
2086 // scan_w,
2087 // scan_h,
2088 // scan_x1,
2089 // scan_y1,
2090 // scan_x2,
2091 // scan_y2);
2092 //
2093 // printf("MotionScan::scan_frame 2 block x1=%d y1=%d x2=%d y2=%d result x=%.2f y=%.2f\n",
2094 // block_x1,
2095 // block_y1,
2096 // block_x2,
2097 // block_y2,
2098 // (float)x_result / 4,
2099 // (float)y_result / 4);
2100
2101
2102 // If a new search is required, rescale results back to pixels.
2103                                 if(total_steps >= total_pixels)
2104                                 {
2105 // Single pixel accuracy reached.  Now do exhaustive subpixel search.
2106                                         if(plugin->config.action == MotionScan::STABILIZE ||
2107                                                 plugin->config.action == MotionScan::TRACK ||
2108                                                 plugin->config.action == MotionScan::NOTHING)
2109                                         {
2110                                                 x_result /= OVERSAMPLE;
2111                                                 y_result /= OVERSAMPLE;
2112                                                 scan_w = 2;
2113                                                 scan_h = 2;
2114                                                 subpixel = 1;
2115                                         }
2116                                         else
2117                                         {
2118 // Fill in results and quit
2119                                                 dx_result = block_x1 * OVERSAMPLE - x_result;
2120                                                 dy_result = block_y1 * OVERSAMPLE - y_result;
2121                                                 break;
2122                                         }
2123                                 }
2124                                 else
2125 // Reduce scan area and try again
2126                                 {
2127                                         scan_w = (scan_x2 - scan_x1) / 2;
2128                                         scan_h = (scan_y2 - scan_y1) / 2;
2129                                         x_result /= OVERSAMPLE;
2130                                         y_result /= OVERSAMPLE;
2131                                 }
2132                         }
2133                 }
2134
2135                 dx_result *= -1;
2136                 dy_result *= -1;
2137         }
2138
2139
2140
2141
2142
2143
2144 // Write results
2145         if(plugin->config.calculation == MotionScan::SAVE)
2146         {
2147                 char string[BCTEXTLEN];
2148                 sprintf(string,
2149                         "%s%06d",
2150                         MOTION_FILE,
2151                         plugin->get_source_position());
2152                 FILE *output;
2153                 if(point == 0)
2154                         output = fopen(string, "w");
2155                 else
2156                         output = fopen(string, "a");
2157                 if(output)
2158                 {
2159                         fprintf(output,
2160                                 "%d %d\n",
2161                                 dx_result,
2162                                 dy_result);
2163                         fclose(output);
2164                 }
2165                 else
2166                 {
2167                         perror("MotionScan::scan_frame SAVE 1");
2168                 }
2169         }
2170
2171 #ifdef DEBUG
2172 printf("MotionScan::scan_frame 10 point=%d dx=%.2f dy=%.2f\n",
2173 point,
2174 (float)this->dx_result / OVERSAMPLE,
2175 (float)this->dy_result / OVERSAMPLE);
2176 #endif
2177 }
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195 int64_t MotionScan::get_cache(int x, int y)
2196 {
2197         int64_t result = -1;
2198         cache_lock->lock("MotionScan::get_cache");
2199         for(int i = 0; i < cache.total; i++)
2200         {
2201                 MotionScanCache *ptr = cache.values[i];
2202                 if(ptr->x == x && ptr->y == y)
2203                 {
2204                         result = ptr->difference;
2205                         break;
2206                 }
2207         }
2208         cache_lock->unlock();
2209         return result;
2210 }
2211
2212 void MotionScan::put_cache(int x, int y, int64_t difference)
2213 {
2214         MotionScanCache *ptr = new MotionScanCache(x, y, difference);
2215         cache_lock->lock("MotionScan::put_cache");
2216         cache.append(ptr);
2217         cache_lock->unlock();
2218 }
2219
2220
2221
2222
2223
2224 MotionScanCache::MotionScanCache(int x, int y, int64_t difference)
2225 {
2226         this->x = x;
2227         this->y = y;
2228         this->difference = difference;
2229 }
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240 #endif
2241
2242
2243