| rgb = np.array(tuple(map(int, elems[4:7]))) | |
| error = np.array(float(elems[7])) | |
| xyzs[count] = xyz | |
| rgbs[count] = rgb | |
| errors[count] = error | |
| count += 1 | |
| return xyzs, rgbs, errors |
| rgb = np.array(tuple(map(int, elems[4:7]))) | |
| error = np.array(float(elems[7])) | |
| xyzs[count] = xyz | |
| rgbs[count] = rgb | |
| errors[count] = error | |
| count += 1 | |
| return xyzs, rgbs, errors |