mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Fix warning (#851)
* remove unused variable * modify variable type from int to size_t * fix previous delete, we need to call chinese_whispers here but we don't need its result now
This commit is contained in:
parent
fa2f35fee3
commit
ea9aae0f5f
@ -166,7 +166,7 @@ boost::python::list chinese_whispers_clustering(boost::python::list descriptors,
|
||||
edges.push_back(sample_pair(i,j));
|
||||
}
|
||||
}
|
||||
const auto num_clusters = chinese_whispers(edges, labels);
|
||||
chinese_whispers(edges, labels);
|
||||
for (size_t i = 0; i < labels.size(); ++i)
|
||||
{
|
||||
clusters.append(labels[i]);
|
||||
@ -242,7 +242,6 @@ boost::python::list get_face_chips (
|
||||
|
||||
boost::python::list chips_list;
|
||||
|
||||
int num_faces = faces.size();
|
||||
std::vector<chip_details> dets;
|
||||
for (auto& f : faces)
|
||||
dets.push_back(get_face_chip_details(f, size, padding));
|
||||
@ -253,9 +252,9 @@ boost::python::list get_face_chips (
|
||||
{
|
||||
boost::python::list img;
|
||||
|
||||
for(int row=0; row<size; row++) {
|
||||
for(size_t row=0; row<size; row++) {
|
||||
boost::python::list row_list;
|
||||
for(int col=0; col<size; col++) {
|
||||
for(size_t col=0; col<size; col++) {
|
||||
rgb_pixel pixel = chip(row, col);
|
||||
boost::python::list item;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user