Esempio n. 1
0
 public byte[] load() {
   return FileUtils.loadPixelVector(_file, _resolution * _resolution * SIZE);
 }
Esempio n. 2
0
 public boolean save() {
   return FileUtils.savePixelVector(_file, _rgb);
 }
Esempio n. 3
0
 public void readDataToMemory(String folderPath) {
   _rgb = convert(FileUtils.readPixelVectorData(folderPath + resolution() + SUBSPACE_SUFFIX));
 }