mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-14 19:49:02 +00:00
11 lines
313 B
C
11 lines
313 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
|
||
|
@interface PictureBlocks : NSObject {
|
||
|
}
|
||
|
+ (NSString *)getBlocksFromImagePath:(NSString *)imagePath blockCount:(NSNumber *)blockCount scanArea:(NSNumber *)scanArea;
|
||
|
+ (NSSize)getImageSize:(NSString *)imagePath;
|
||
|
@end
|
||
|
|
||
|
|
||
|
NSString* GetBlocks(NSString *filePath, int blockCount, int scanSize);
|