You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
322 B
20 lines
322 B
3 months ago
|
|
||
|
|
||
|
#include "oc_feature.h"
|
||
|
|
||
|
namespace opencorr
|
||
|
{
|
||
|
void Feature2D::setImages(Image2D& ref_img, Image2D& tar_img)
|
||
|
{
|
||
|
this->ref_img = &ref_img;
|
||
|
this->tar_img = &tar_img;
|
||
|
}
|
||
|
|
||
|
void Feature3D::setImages(Image3D& ref_img, Image3D& tar_img)
|
||
|
{
|
||
|
this->ref_img = &ref_img;
|
||
|
this->tar_img = &tar_img;
|
||
|
}
|
||
|
|
||
|
}//namespace opencorr
|