Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
cv::Mat datausingの行にアクセスしますfloat* dataptr = data.ptr<float>(0); ループの後、float* dataptrusing delete dataptr を解放する必要がありますか? ありがとう
cv::Mat data
float* dataptr = data.ptr<float>(0);
float* dataptr
そのポインターの場所は Mat 構造に属し、Mat が実際の所有者です。