1

我有一个 Shapes 向量,Shape 是我写的一个类。在 keyDown 函数中,我遍历这个 Shapes 向量并将 bool 属性 background 更新为 true。但是,它似乎并没有坚持这种变化。

主类:

vector<Shape> mTrackedShapes;

void CeilingKinectApp::keyDown( KeyEvent event )
{
    // remove all background shapes
    if (event.getChar() == 'x') {
        for (Shape s : mTrackedShapes) {
            s.background = true;
        }
    }
}

形状.h

#pragma once
#include "CinderOpenCV.h"
class Shape
{
public:
    Shape();

    int ID;
    double area;
    float depth;
    cv::Point centroid; // center point of the shape
    bool matchFound;
    bool moving;
    bool background;
    cinder::Color color;
    int stillness;
    float motion;
    cv::vector<cv::Point> hull; // stores point representing the hull of the shape
    int lastFrameSeen;
};

形状.cpp

#include "Shape.h"

Shape::Shape() :
    centroid(cv::Point()),
    ID(-1),
    lastFrameSeen(-1),
    matchFound(false),
    moving(false),
    background(false),
    stillness(0),
    motion(0.0f)
{

}

它注册了 keyDown 事件,并正确地遍历了向量,但 background 属性仍然为 false。我究竟做错了什么?

4

1 回答 1

1

尝试

 for (Shape &s : mTrackedShapes)

您的代码将制作对象的副本,并且您将更改副本上的属性而不是向量中的属性

于 2016-05-17T04:19:35.867 回答