luoyetx / JDA

C++ implementation of Joint Cascade Face Detection and Alignment.
BSD 3-Clause "New" or "Revised" License
184 stars 140 forks source link

ptr[j] = img.at<uchar>(x1_, y1_) - img.at<uchar>(x2, y2); 这行代码 #2

Closed GarrickLin closed 9 years ago

GarrickLin commented 9 years ago

JDA/src/jda/data.cpp 中的第57行代码 tr[j] = img.at<uchar>(x1_, y1_) - img.at<uchar>(x2, y2); 是不是应该改成 tr[j] = img.at<uchar>(x1_, y1_) - img.at<uchar>(x2_, y2_);

luoyetx commented 9 years ago

确实写错了