Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 3acbabd

Browse files
authored
feat: Added ImageLoader (#649)
* feat: Added ImageLoader * Update CMakeLists.txt * Update CMakeLists.txt * fix: import turbojpeg * fix: import turbojpeg * fix: import TurboJpeg * fix: added memory management * fix: removed return value and change function names * fix: changed enum name and function return value * fix: swaped Int32 to CInts
1 parent e1f0acb commit 3acbabd

File tree

5 files changed

+206
-0
lines changed

5 files changed

+206
-0
lines changed

CMakeLists.txt

+28
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,39 @@ ExternalProject_Add(swift-protobuf
7979
${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_IMPORT_LIBRARY_PREFIX}SwiftProtobuf${CMAKE_IMPORT_LIBRARY_SUFFIX}
8080
STEP_TARGETS install)
8181

82+
ExternalProject_Add(libjpeg-turbo
83+
GIT_REPOSITORY
84+
git://github.com/libjpeg-turbo/libjpeg-turbo
85+
GIT_TAG
86+
master
87+
UPDATE_DISCONNECTED
88+
TRUE
89+
CMAKE_ARGS
90+
-D CMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}
91+
-D ENABLE_SHARED=NO
92+
INSTALL_COMMAND
93+
${CMAKE_COMMAND} -E copy_if_different ${CMAKE_SOURCE_DIR}/ImageLoader/libjpeg-turbo/module.modulemap <SOURCE_DIR>
94+
BUILD_BYPRODUCTS
95+
<BINARY_DIR>/${CMAKE_STATIC_LIBRARY_PREFIX}turbojpeg${CMAKE_STATIC_LIBRARY_SUFFIX}
96+
STEP_TARGETS
97+
build)
98+
99+
add_library(turbojpeg STATIC IMPORTED)
82100
add_library(SwiftProtobuf SHARED IMPORTED)
101+
83102
set_target_properties(SwiftProtobuf PROPERTIES
84103
IMPORTED_LOCATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_SHARED_LIBRARY_PREFIX}SwiftProtobuf${CMAKE_SHARED_LIBRARY_SUFFIX}
85104
IMPORTED_IMPLIB ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_IMPORT_LIBRARY_PREFIX}SwiftProtobuf${CMAKE_IMPORT_LIBRARY_SUFFIX}
86105
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
87106
add_dependencies(SwiftProtobuf swift-protobuf-install)
88107

108+
ExternalProject_Get_Property(libjpeg-turbo BINARY_DIR)
109+
ExternalProject_Get_Property(libjpeg-turbo SOURCE_DIR)
110+
111+
set_target_properties(turbojpeg PROPERTIES
112+
IMPORTED_LOCATION ${BINARY_DIR}/${CMAKE_STATIC_LIBRARY_PREFIX}turbojpeg${CMAKE_STATIC_LIBRARY_SUFFIX}
113+
IMPORTED_INCLUDE_DIRECTORIES "${BINARY_DIR};${SOURCE_DIR}")
114+
89115
if(CMAKE_SYSTEM_NAME STREQUAL Windows)
90116
set(_copy_swift_argument_parser_import_library
91117
${CMAKE_COMMAND} -E copy_if_different <BINARY_DIR>/Sources/ArgumentParser/${CMAKE_IMPORT_LIBRARY_PREFIX}ArgumentParser${CMAKE_IMPORT_LIBRARY_SUFFIX} ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/)
@@ -120,6 +146,7 @@ set_target_properties(ArgumentParser PROPERTIES
120146
IMPORTED_IMPLIB ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_IMPORT_LIBRARY_PREFIX}ArgumentParser${CMAKE_IMPORT_LIBRARY_SUFFIX}
121147
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_Swift_MODULE_DIRECTORY})
122148
add_dependencies(ArgumentParser swift-argument-parser-install)
149+
add_dependencies(turbojpeg libjpeg-turbo-build)
123150

124151
add_subdirectory(Autoencoder)
125152
add_subdirectory(Support)
@@ -132,6 +159,7 @@ add_subdirectory(DCGAN)
132159
add_subdirectory(FastStyleTransfer)
133160
add_subdirectory(Examples)
134161
add_subdirectory(TrainingLoop)
162+
add_subdirectory(ImageLoader)
135163

136164
if(BUILD_TESTING)
137165
add_subdirectory(Tests)

ImageLoader/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
add_subdirectory(JPEGImageOperations)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
add_library(JPEGImageOperations
2+
JPEGImageOperations.swift)
3+
4+
set_target_properties(JPEGImageOperations PROPERTIES
5+
Swift_LANGUAGE_VERSION 4.2)
6+
7+
target_include_directories(JPEGImageOperations PUBLIC
8+
${CMAKE_CURRENT_SOURCE_DIR}
9+
${SOURCE_DIR}
10+
${BINARY_DIR})
11+
12+
target_link_libraries(JPEGImageOperations PRIVATE
13+
turbojpeg)
14+
15+
install(TARGETS JPEGImageOperations
16+
ARCHIVE DESTINATION lib
17+
LIBRARY DESTINATION lib
18+
RUNTIME DESTINATION bin
19+
COMPONENT lib)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
import Foundation
2+
import TurboJPEG
3+
4+
#if os(iOS) || os(macOS) || os(tvOS) || os(watchOS)
5+
import Darwin
6+
#elseif os(Android) || os(Linux)
7+
import Glibc
8+
#elseif os(Windows)
9+
import ucrt
10+
#else
11+
#error("C library not known for the target OS")
12+
#endif
13+
14+
public enum pixelFormat: Int {
15+
case RGB888 = 0 // TJPF_RGB
16+
case BGR888 = 1 // TJPF_BGR
17+
case RGBA8888 = 2 // TJPF_RGBA
18+
case BGRA8888 = 3 // TJPF_BGRA
19+
case ARGB8888 = 4 // TJPF_ARGB
20+
case ABGR8888 = 5 // TJPF_ABGR
21+
case RGBA8880 = 6 // TJPF_RGBX
22+
case BGRA8880 = 7 // TJPF_BGRX
23+
case ARGB0888 = 8 // TJPF_XRGB
24+
case ABGR0888 = 9 // TJPF_XBGR
25+
case YUV400 = 10 // TJPF_GREY
26+
27+
var channelCount: Int {
28+
switch self {
29+
case .RGB888:
30+
return 3
31+
case .BGR888:
32+
return 3
33+
case .RGBA8888:
34+
return 4
35+
case .BGRA8888:
36+
return 4
37+
case .ARGB8888:
38+
return 4
39+
case .ABGR8888:
40+
return 4
41+
case .RGBA8880:
42+
return 3
43+
case .BGRA8880:
44+
return 3
45+
case .ARGB0888:
46+
return 3
47+
case .ABGR0888:
48+
return 3
49+
case .YUV400:
50+
return 1
51+
}
52+
}
53+
}
54+
55+
public class ImageData {
56+
let height: CInt
57+
let width: CInt
58+
let buffer: UnsafeMutablePointer<UInt8>
59+
let formatProperties: pixelFormat
60+
61+
init(height: Int32, width: Int32, imageFormat: pixelFormat) {
62+
self.height = height
63+
self.width = width
64+
formatProperties = imageFormat
65+
buffer = tjAlloc(Int32(imageFormat.channelCount) * width * height)
66+
}
67+
68+
deinit {
69+
tjFree(self.buffer)
70+
}
71+
}
72+
73+
func loadJPEG(atPath path: String, imageFormat: pixelFormat) throws -> ImageData {
74+
var width: CInt = 0
75+
var height: CInt = 0
76+
77+
guard FileManager.default.fileExists(atPath: path) else {
78+
throw ("File does not exist at \(path).")
79+
}
80+
81+
let data: Data = FileManager.default.contents(atPath: path)!
82+
let jpegSize: UInt = UInt(data.count)
83+
84+
return data.withUnsafeBytes {
85+
let finPointer: UnsafeMutablePointer<UInt8> = UnsafeMutablePointer<UInt8>(mutating: $0.baseAddress!.assumingMemoryBound(to: UInt8.self))
86+
87+
let decompressor = tjInitDecompress()
88+
defer { tjDestroy(decompressor) }
89+
90+
/* Initializes `width` and `height` variables */
91+
tjDecompressHeader(decompressor, finPointer, jpegSize, &width, &height)
92+
93+
let imageData = ImageData(height: height, width: width, imageFormat: imageFormat)
94+
95+
/* Decompresses the JPEG Image from `data` into `buffer` buffer
96+
- Decompresses `finPointer` which has image data
97+
- uses `jpegSize` as size of image in bytes
98+
- Image gets decompressed into `buffer` buffer
99+
- `width` = width of Image
100+
- pitch = 0
101+
- `height` = height of image
102+
- pixelFormat = imageFormat.rawValue which denotes Pixel Format to which image is being decompressed.
103+
- flags = 0
104+
*/
105+
tjDecompress2(decompressor, finPointer, UInt(jpegSize), imageData.buffer, imageData.width, 0, imageData.height, Int32(imageFormat.rawValue), 0)
106+
107+
return imageData
108+
}
109+
}
110+
111+
func saveJPEG(atPath path: String, image: ImageData) throws {
112+
do {
113+
try FileManager.default.removeItem(atPath: path)
114+
} catch {
115+
// File not present
116+
}
117+
118+
var jpegBuf: UnsafeMutablePointer<UInt8>?
119+
defer { tjFree(jpegBuf) }
120+
121+
let outQual: CInt = 95
122+
var jpegSize: UInt = 0
123+
124+
let compressor = tjInitCompress()
125+
defer { tjDestroy(compressor) }
126+
127+
/* Compress the Image Data from `image.data` into `jpegBuf`
128+
- Compresses image.data
129+
- `width` = width of Image
130+
- pitch = 0
131+
- `height` = height of image
132+
- `pixelFormat` = image.formatProperties.rawValue which denotes Pixel Format to which image is being compressed.
133+
- Image gets compressed into `jpegBuf` buffer
134+
- initializes `jpegSize` as size of image in bytes
135+
- `outSubsamp` = 0
136+
- `outQual` = the image quality of the generated JPEG image (1 = worst, 100 = best), 95 taken as default
137+
- `flags` = 0
138+
*/
139+
tjCompress2(compressor, image.buffer, image.width, 0, image.height, Int32(image.formatProperties.rawValue), &jpegBuf, &jpegSize, 0, outQual, 0)
140+
141+
let bufferPointer = UnsafeMutableBufferPointer(start: jpegBuf, count: Int(jpegSize))
142+
let jpegData = Data(buffer: bufferPointer)
143+
144+
guard FileManager.default.createFile(atPath: path, contents: jpegData) else {
145+
throw ("Error during image saving")
146+
}
147+
}
148+
149+
extension String: LocalizedError {
150+
public var errorDescription: String? { return self }
151+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module TurboJPEG {
2+
header "jinclude.h"
3+
header "jpeglib.h"
4+
header "turbojpeg.h"
5+
export *
6+
link "turbojpeg"
7+
}

0 commit comments

Comments
 (0)