Lines Matching refs:pixel
1099 std::vector<int> pixel = GetColorData(fixedX, fixedY, actualHeight, preferredPath);
1100 for (size_t i = 0; i < pixel.size(); i++) {
1101 //255 is invalid pixel value required
1102 if (pixel[i] != TZ_MAX_PIXEL_VALUE && categoryMap.find(pixel[i]) != categoryMap.end()) {
1103 std::string zdId = categoryMap[pixel[i]];
1169 for (size_t i = 0; i < 3; i++) { // 3 is RGB color pixel length
1170 std::string pixel = std::to_string(*(row_pointers + x * 3 + i)); // 3 is RGB color pixel length
1171 result.push_back(atoi(pixel.c_str()));