-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathImgProc.linq
202 lines (157 loc) · 6.16 KB
/
ImgProc.linq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<Query Kind="VBProgram">
<Reference><RuntimeDirectory>\Microsoft.VisualBasic.dll</Reference>
<NuGetReference>AForge.Imaging</NuGetReference>
<NuGetReference>AForge.Imaging.Formats</NuGetReference>
<NuGetReference>morelinq</NuGetReference>
<Namespace>Microsoft.VisualBasic</Namespace>
<Namespace>MoreLinq</Namespace>
<Namespace>System.Drawing</Namespace>
<Namespace>System.Drawing.Imaging</Namespace>
<Namespace>System.Runtime.InteropServices</Namespace>
<Namespace>System.Threading.Tasks</Namespace>
</Query>
Async Sub Main
Dim times As New List(Of TimeSpan)
Dim batchSize As Integer = 3 ' play with this number between 1 and higher
Dim files = IO.Directory.EnumerateFiles(IO.Path.GetDirectoryName(Util.CurrentQueryPath), "*.fit").Batch(batchSize)
Dim sw As New Stopwatch
sw.Start
For Each batch In files
Dim tasks = batch.Select(Function(f) ProcessFile(f)).ToArray.Dump
Task.WaitAll(tasks)
For Each ts In tasks
Await ts
Next
Dim infos = tasks.Select(Function(t) t.Result)
Dim infoTasks = infos.Select(Function(i) i.GetHistogramData).ToArray.Dump
Task.WaitAll(infoTasks)
For Each ts In infoTasks
Await ts
Next
Dim infoResults = infoTasks.Select(Function(i) i.Result)
times.AddRange(infos.Select(Function(i) i.Time).Concat(infoResults.Select(Function(i) i.Time)))
Next
sw.Stop
sw.Dump("How long it took to process")
Dim total As TimeSpan = TimeSpan.Zero
For Each time In times
total += time
Next
total.Dump("Total time for work")
Dim savings = total - sw.Elapsed
savings.Dump("Time diff")
End Sub
Async Function ProcessFile(fl As String) As Task(Of FileProcessInfo)
Return Await Task.Run(
Function()
Dim fit As New AForge.Imaging.Formats.FITSCodec
Dim pth As String = IO.Path.Combine(IO.Path.GetDirectoryName(Util.CurrentQueryPath), $"{IO.Path.GetFileNameWithoutExtension(fl)}-Hist.txt")
Dim info As FileProcessInfo
Using strm As New IO.FileStream(fl, FileMode.OpenOrCreate, FileAccess.Read, FileShare.Read)
Dim sw As New Stopwatch
sw.Start
Using bmp As Bitmap = fit.DecodeSingleFrame(strm)
'bmp.Dump
Dim bitSize = Image.GetPixelFormatSize(bmp.PixelFormat)
Dim pixelSize = bitSize \ 8
'fl.Dump
Dim format = bmp.PixelFormat.ToString
info = New FileProcessInfo With {
.File = fl,
.BitSize = bitSize,
.Format = format,
.PixelSize = pixelSize,
.DataFile = pth}
Dim bmpData As BitmapData
Try
Dim rect As New Rectangle(0, 0, bmp.Width, bmp.Height)
bmpData = bmp.LockBits(rect,
ImageLockMode.ReadWrite, bmp.PixelFormat)
' Get the address of the first line.
Dim ptr As IntPtr = bmpData.Scan0
' Declare an array to hold the bytes of the bitmap.
' This code is specific to a bitmap with 24 bits per pixels.
info.ByteCount = Math.Abs(bmpData.Stride) * bmp.Height
Dim rgbValues(info.ByteCount - 1) As Byte
' Copy the RGB values into the array.
Marshal.Copy(ptr, rgbValues, 0, info.ByteCount)
info.bytes = rgbValues
Catch ex As Exception
ex.Dump
Finally
If bmpData IsNot Nothing Then bmp.UnlockBits(bmpData)
End Try
sw.Stop
info.Time = sw.Elapsed
End Using
End Using
Return info
End Function)
End Function
Public Shared Sub Test48BPP(ByVal FileName As String)
Dim b16bpp As New Bitmap(5000, 5000, System.Drawing.Imaging.PixelFormat.Format16bppGrayScale)
Dim rect As New Rectangle(0, 0, b16bpp.Width, b16bpp.Height)
Dim bitmapData As System.Drawing.Imaging.BitmapData = b16bpp.LockBits(rect, Imaging.ImageLockMode.WriteOnly, b16bpp.PixelFormat)
'Calculate the number of bytes required And allocate them.
Dim BytePerPixel As Integer = Image.GetPixelFormatSize(b16bpp.PixelFormat) \ 8
Dim bitmapBytes((b16bpp.Width * b16bpp.Height * BytePerPixel) - 1) As Byte
'Fill the bitmap bytes with random data.
Dim Rnd As New Random
Dim RunIdx As Long = 0
For x As Integer = 0 To b16bpp.Width - 1
For y As Integer = 0 To b16bpp.Height - 1
Dim PixelIdx As Integer = (y * b16bpp.Width * BytePerPixel) + (x * BytePerPixel)
Dim BitPatternR As Byte() = BitConverter.GetBytes(CType(Rnd.Next(0, UInt16.MaxValue + 1), UInt16))
Dim BitPatternG As Byte() = BitConverter.GetBytes(CType(Rnd.Next(0, UInt16.MaxValue + 1), UInt16))
Dim BitPatternB As Byte() = BitConverter.GetBytes(CType(Rnd.Next(0, UInt16.MaxValue + 1), UInt16))
bitmapBytes(PixelIdx + 0) = BitPatternR(0)
bitmapBytes(PixelIdx + 1) = BitPatternR(1)
bitmapBytes(PixelIdx + 2) = BitPatternG(0)
bitmapBytes(PixelIdx + 3) = BitPatternG(1)
bitmapBytes(PixelIdx + 4) = BitPatternB(0)
bitmapBytes(PixelIdx + 5) = BitPatternB(1)
RunIdx += 1
Next y
Next x
'Copy the randomized bits to the bitmap pointer.
Dim Pointer As IntPtr = bitmapData.Scan0
Runtime.InteropServices.Marshal.Copy(bitmapBytes, 0, Pointer, bitmapBytes.Length)
'Unlock the bitmap, we're all done.
b16bpp.UnlockBits(bitmapData)
b16bpp.Save(FileName, Imaging.ImageFormat.Png)
End Sub
Class HistogramInfo
Property Time As TimeSpan
Property Histogram As DumpContainer
End Class
Class HistogramData
Property Pixel As UInt32
Property Count As Long
End Class
Class FileProcessInfo
Property File As String
Property Time As timespan
Property BitSize As Integer
Property Format As String
Property PixelSize As Integer
Property ByteCount As Long
Property DataFile As String
Property Bytes As Byte()
Function GetHistogramData() As task(Of HistogramInfo)
'Do stuff here with rgbvalues to either edit or process
'convert bytes to pixels
Return Task.Run(
Function()
Dim sw As New Stopwatch
sw.Start
Dim pixels = From pixel In bytes.Batch(PixelSize).AsParallel.WithExecutionMode(ParallelExecutionMode.ForceParallelism)
Select BitConverter.ToUInt32(pixel.Concat(enumerable.range(0, 4 - pixel.Count).Select(Function(n) New Byte)).ToArray, 0)
Dim result = (From p In pixels
Group By p Into HistG = Group
Select New HistogramData With {.Pixel = p, .Count = HistG.LongCount}).ToArray
sw.Stop
Return New HistogramInfo With {.Time = sw.Elapsed, .Histogram = util.OnDemand("Click to see HistogramData", Function() result.OrderByDescending(Function(d) d.Count))}
End Function)
'hist.Dump
End Function
End Class