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