1 | initial version |
Thank you very much for the tip, the fd.write() method revealed that the true file should look like this descriptor: 3 descriptor_channels: 3 descriptor_size: 0 threshold: 1.0000000474974513e-03 octaves: 0 sublevels: 4 diffusivity: 1
So the method should look like:
writeToFile(outputFile, "%YAML:1.0\ndescriptor: 3\ndescriptor_size: 0\ndescriptor_channels: 3\nthreshold: 0.001\noctaves: 4\nsublevels: 4\ndiffusivity: 1\n");
2 | No.2 Revision |
Thank you very much for the tip, the fd.write() method revealed that the true file should look like this
descriptor: 3
3
descriptor_channels: 3
3
descriptor_size: 0
0
threshold: 1.0000000474974513e-03
1.0000000474974513e-03
octaves: 0
0
sublevels: 4
4
diffusivity: 11
So the method should look like:
writeToFile(outputFile, "%YAML:1.0\ndescriptor: 3\ndescriptor_size: 0\ndescriptor_channels: 3\nthreshold: 0.001\noctaves: 4\nsublevels: 4\ndiffusivity: 1\n");
3 | No.3 Revision |
Thank you very much for the tip, the fd.write() method revealed that the true file should look like this
descriptor: 3
descriptor_channels: 3
descriptor_size: 0
threshold: 1.0000000474974513e-03
octaves: 0
sublevels: 4
diffusivity: 1
So the method should look like:
writeToFile(outputFile, "%YAML:1.0\ndescriptor: 3\ndescriptor_size: 0\ndescriptor_channels: 3\nthreshold: 0.001\noctaves: 4\nsublevels: 4\ndiffusivity: 1\n");
Now it works fine.
4 | No.4 Revision |
Thank you very much for the tip, the fd.write() method revealed that the true file should look like this
descriptor: 3
descriptor_channels: 3
descriptor_size: 0
threshold: 1.0000000474974513e-03
octaves: 0 4
sublevels: 4
diffusivity: 1
So the method should look like:
writeToFile(outputFile, "%YAML:1.0\ndescriptor: 3\ndescriptor_size: 0\ndescriptor_channels: 3\nthreshold: 0.001\noctaves: 4\nsublevels: 4\ndiffusivity: 1\n");
Now it works fine.