Code Monkey home page Code Monkey logo

openskystacker's People

Contributors

benjuan26 avatar bieryibm avatar nouspiro avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

openskystacker's Issues

Sample Data

Hello,

I am interested in working on the project, but I do not have any sample data.

Is there a good source for sample data?

Image selection flow

Eventually the image selection flow should be:

  • Select images. Could optionally provide separate controls for selecting lights, darks, flats, and bias frames, or those could be selected later
  • Images are previewed from the list and can be deselected from processing
  • Reference image should be assigned. This could either be enforced or chosen automatically if none is chosen

Can't build

Tried to build on Ubuntu 18.04.5 LTS. Geting this error on "sudo make install":

[ 33%] Building CXX object modules/videoio/CMakeFiles/opencv_videoio.dir/src/cap_ffmpeg.cpp.o
[ 33%] Linking CXX shared library ../../lib/libopencv_videoio.so
/usr/bin/ld: /usr/local/lib/libavcodec.a(vc1dsp_mmx.o): relocation R_X86_64_PC32 against symbol `ff_pw_9' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
modules/videoio/CMakeFiles/opencv_videoio.dir/build.make:229: recipe for target 'lib/libopencv_videoio.so.3.3.0' failed
make[2]: *** [lib/libopencv_videoio.so.3.3.0] Error 1
CMakeFiles/Makefile2:4774: recipe for target 'modules/videoio/CMakeFiles/opencv_videoio.dir/all' failed
make[1]: *** [modules/videoio/CMakeFiles/opencv_videoio.dir/all] Error 2
Makefile:162: recipe for target 'all' failed
make: *** [all] Error 2

StarTools app (linux) cant read output tiff file..

I wanted to test out your software with a multi-platform astro image processing software I use sometimes. I tried to load your outputted tiff file into StarTools but it was unable to load it. A message pops up saying:

"Could not read file. Make sure image file is a FITS file, an uncompressed, IBM PC byte-order TIFF file, or a PNG file."

The GIMP is, of course, able to load it but only at 8-bpp.

You can download a free version here if you want to try it: http://www.startools.org/downloads

Also, any chance you could add FITS to the output file format?

Image list not behaving properly

  • Not defaulting to checked (this was on purpose but it should be changed)
  • Sometimes doesn't enable stack button
  • Doesn't set the first light frame as reference

FITS support

There is currently no support for FITS images.

Display result time in hour, min when above 60 sec

Hello,

Request

Can the Stacking completed result be shown in relative time (Day, Hour, minutes, or seconds) depending on the duration?

Explanation

At the end of the stacking, the app says "Stacking completed in XX sec". Above 120 sec I stop counting.
In this example, as a user, I do not know how long it was. I would prefer to know it was "22 minutes and 27 seconds".
capture d ecran 2018-05-26 a 19 11 00

Logic

1. Under 60 sec

Example: 55
Message: Stacking completed in 55 second(s)
Logic:

  • seconds = value

2. Between 61 and 3600 sec

Example: 2501
Message: Stacking completed in 41 minute(s) and 41 second(s)
Logic:

  • minutes = value / 60
  • seconds = value % 60

3. Between 3601 and 86,400 sec

Example: 45,607
Message: Stacking completed in 12 hour(s), 40 minute(s) and 7 second(s)
Logic:

  • hours = value / 3600
  • minutes = (value % 3600) / 60
  • seconds = (value % 3600) % 60

3. Above 86,400 sec

Example: 502,145
Message: Stacking completed in 5 day(s), 19 hour(s), 29 minute(s) and 5 second(s)
Logic:

  • days = value / 86400
  • hours = (value % 86400) / 3600
  • minutes = ((value % 86400) % 3600) / 60
  • seconds = ((value % 86400) % 3600) % 60

Align algorithm

Need to look into the intricacies of the align algorithm. I originally followed this example. He uses 5000 iterations and an epsilon of 1e-10. I had reduced that to 500 and 1e-8 and it worked okay but ended up being increasingly slower on larger images, not surprisingly. I just tried 50 and 1e-6 (the defaults are 50 and 1e-3) and it's still aligning no problem, and only taking 2-5 seconds for 4000x2000 images, as opposed to sometimes minutes with 500 and 1e-8.

We will need to test what effect both the iterations and the epsilon have on the resulting alignment. I would also like to see what is the maximum disparity supported between two images, as I've only tested with images that are nearly identical.

Problem compiling

I'm trying to compile on Ubuntu 17.10 (beta), but something seems to be wrong with the include paths. I'm not entirely sure if this is a project with the Qt project or a problem in Ubuntu, the latter seems unlikely to me though.

$ make
cd src/ && ( test -e Makefile || /usr/lib/x86_64-linux-gnu/qt5/bin/qmake -o Makefile /home/markus/build/OpenSkyStacker/src/src.pro qt=qt5 ) && make -f Makefile 
make[1]: Entering directory '/home/markus/build/OpenSkyStacker/src'
g++ -c -m64 -pipe -I/usr/include/opencv -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC -DQT_DEPRECATED_WARNINGS -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -isystem /usr/include -isystem /usr/local/include -isystem /usr/include/x86_64-linux-gnu -isystem /usr/include/libraw -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -I../build/moc -isystem /usr/include/libdrm -I../build/ui -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++-64 -o ../build/o/linux/main.o main.cpp
In file included from /usr/include/c++/7/bits/stl_algo.h:59:0,
                 from /usr/include/c++/7/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/qt5/QtCore/qglobal.h:109,
                 from /usr/include/x86_64-linux-gnu/qt5/QtGui/qtguiglobal.h:43,
                 from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qtwidgetsglobal.h:43,
                 from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/qmainwindow.h:43,
                 from /usr/include/x86_64-linux-gnu/qt5/QtWidgets/QMainWindow:1,
                 from ui/mainwindow.h:4,
                 from main.cpp:1:
/usr/include/c++/7/cstdlib:75:15: fatal error: stdlib.h: No such file or directory
 #include_next <stdlib.h>
               ^~~~~~~~~~
compilation terminated.
Makefile:498: recipe for target '../build/o/linux/main.o' failed
make[1]: *** [../build/o/linux/main.o] Error 1
make[1]: Leaving directory '/home/markus/build/OpenSkyStacker/src'
Makefile:44: recipe for target 'sub-src-make_first-ordered' failed
make: *** [sub-src-make_first-ordered] Error 2

But stdlib.h exists:

$ ls -l /usr/include/stdlib.h 
-rw-r--r-- 1 root root 32664 Jul  1 23:13 /usr/include/stdlib.h

Some version info:

$ qmake --version
QMake version 3.1
Using Qt version 5.9.1 in /usr/lib/x86_64-linux-gnu

$ g++ --version
g++ (Ubuntu 7.2.0-3ubuntu1) 7.2.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Any idea what's wrong here?

OpenCV 2 can't write 32-bit TIFF files

OpenCV 2, the version that comes with seemingly every Linux package manager, won't write 32-bit TIFF files. Worse still, it doesn't fail: it silently writes the image an 8-bit TIFF.

It looks the implications are simply that OpenCV on Linux will always have to be built from source instead of installing from a package manager.

A way to detect for this is to look for the opencv_imgcodecs library, as it appears to be unique to OpenCV 3.

Dark mode on macOS Mojave

Need to handle dark mode, whether that means turning it off or making sure everything looks good with it turned on.

Seems to be done at compile time, as a version compiled previously looks the same in dark mode, but a version compiled under Mojave with dark mode has black text on a dark gray background in some cases.

Create Raw2QImage method

The current flow for setDiskImage() goes from raw to Mat to QImage, meaning the pixels are iterated over twice. This usually works out to several seconds (for which the UI is blocked at the moment -- that should be changed as well). The time could be cut approximately in half by reading the raw image from the disk and converting directly to QImage.

Crashed when I click "Align and Stack" OSX 10.10.5

Here is the report it generated:

`Process: OpenSkyStacker [1779]
Path: /Applications/OpenSkyStacker.app/Contents/MacOS/OpenSkyStacker
Identifier: com.yourcompany.OpenSkyStacker
Version: 0
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: OpenSkyStacker [1779]
User ID: 501

Date/Time: 2017-09-16 21:34:00.517 -0400
OS Version: Mac OS X 10.10.5 (14F27)
Report Version: 11
Anonymous UUID: 71AF59A0-ED67-987F-D516-AC071EC18F4E

Sleep/Wake UUID: BCF4A889-FEDB-41DA-BF03-360325FEADFF

Time Awake Since Boot: 17000 seconds
Time Since Wake: 2100 seconds

Crashed Thread: 2 QThread

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000

Application Specific Information:
abort() called
terminating with uncaught exception of type cv::Exception: /tmp/opencv-20170825-90583-1pdhamg/opencv-3.3.0/modules/core/src/arithm.cpp:683: error: (-5) When the input arrays in add/subtract/multiply/divide functions have different types, the output array type must be explicitly specified in function arithm_op

Thread 0:: Dispatch queue: com.apple.main-thread
0 org.qt-project.QtGui 0x00000001082cc5b8 0x107f8f000 + 3397048
1 org.qt-project.QtGui 0x0000000108002db5 QImage::fill(Qt::GlobalColor) + 37
2 libqcocoa.dylib 0x000000010b8ca613 0x10b855000 + 480787
3 org.qt-project.QtGui 0x000000010813b437 QBackingStore::resize(QSize const&) + 231
4 org.qt-project.QtWidgets 0x00000001079edd86 0x1079d0000 + 122246
5 org.qt-project.QtWidgets 0x00000001079ed840 0x1079d0000 + 120896
6 org.qt-project.QtWidgets 0x0000000107a4443b 0x1079d0000 + 476219
7 org.qt-project.QtWidgets 0x0000000107a41b6d 0x1079d0000 + 465773
8 org.qt-project.QtWidgets 0x00000001079e158d QApplicationPrivate::notify_helper(QObject*, QEvent*) + 269
9 org.qt-project.QtWidgets 0x00000001079e3ed2 QApplication::notify(QObject*, QEvent*) + 5906
10 org.qt-project.QtCore 0x0000000108673544 QCoreApplication::notifyInternal2(QObject*, QEvent*) + 164
11 org.qt-project.QtGui 0x0000000107fbf8b4 QGuiApplicationPrivate::processExposeEvent(QWindowSystemInterfacePrivate::ExposeEvent*) + 308
12 org.qt-project.QtGui 0x0000000107fa3580 QWindowSystemInterface::sendWindowSystemEvents(QFlagsQEventLoop::ProcessEventsFlag) + 384
13 org.qt-project.QtGui 0x0000000107fa254c QWindowSystemInterface::flushWindowSystemEvents(QFlagsQEventLoop::ProcessEventsFlag) + 572
14 libqcocoa.dylib 0x000000010b867b51 0x10b855000 + 76625
15 org.qt-project.QtGui 0x0000000107fc70ab QWindow::setVisible(bool) + 1003
16 org.qt-project.QtWidgets 0x0000000107a1fcac QWidgetPrivate::show_sys() + 876
17 org.qt-project.QtWidgets 0x0000000107a20bb1 QWidgetPrivate::show_helper() + 417
18 org.qt-project.QtWidgets 0x0000000107a217ac QWidget::setVisible(bool) + 956
19 org.qt-project.QtWidgets 0x0000000107be1eed QDialog::setVisible(bool) + 125
20 org.qt-project.QtWidgets 0x0000000107be15d2 QDialog::exec() + 242
21 com.yourcompany.OpenSkyStacker 0x0000000102a4ddf7 MainWindow::handleButtonStack() + 1479
22 org.qt-project.QtCore 0x00000001086a42e1 QMetaObject::activate(QObject*, int, int, void**) + 913
23 org.qt-project.QtWidgets 0x0000000107ad0c6c 0x1079d0000 + 1051756
24 org.qt-project.QtWidgets 0x0000000107ad0bdf 0x1079d0000 + 1051615
25 org.qt-project.QtWidgets 0x0000000107ad1cae QAbstractButton::mouseReleaseEvent(QMouseEvent*) + 270
26 org.qt-project.QtWidgets 0x0000000107a220b1 QWidget::event(QEvent*) + 1681
27 org.qt-project.QtWidgets 0x0000000107ad19ff QAbstractButton::event(QEvent*) + 175
28 org.qt-project.QtWidgets 0x00000001079e158d QApplicationPrivate::notify_helper(QObject*, QEvent*) + 269
29 org.qt-project.QtWidgets 0x00000001079e4ca0 QApplication::notify(QObject*, QEvent*) + 9440
30 org.qt-project.QtCore 0x0000000108673544 QCoreApplication::notifyInternal2(QObject*, QEvent*) + 164
31 org.qt-project.QtWidgets 0x00000001079e1ef7 QApplicationPrivate::sendMouseEvent(QWidget*, QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointer&, bool) + 871
32 org.qt-project.QtWidgets 0x0000000107a428fb 0x1079d0000 + 469243
33 org.qt-project.QtWidgets 0x0000000107a4194f 0x1079d0000 + 465231
34 org.qt-project.QtWidgets 0x00000001079e158d QApplicationPrivate::notify_helper(QObject*, QEvent*) + 269
35 org.qt-project.QtWidgets 0x00000001079e3ed2 QApplication::notify(QObject*, QEvent*) + 5906
36 org.qt-project.QtCore 0x0000000108673544 QCoreApplication::notifyInternal2(QObject*, QEvent*) + 164
37 org.qt-project.QtGui 0x0000000107fbc21a QGuiApplicationPrivate::processMouseEvent(QWindowSystemInterfacePrivate::MouseEvent*) + 2794
38 org.qt-project.QtGui 0x0000000107fa349b QWindowSystemInterface::sendWindowSystemEvents(QFlagsQEventLoop::ProcessEventsFlag) + 155
39 libqcocoa.dylib 0x000000010b87c821 0x10b855000 + 161825
40 com.apple.CoreFoundation 0x00007fff864d0a01 CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 17
41 com.apple.CoreFoundation 0x00007fff864c2b8d __CFRunLoopDoSources0 + 269
42 com.apple.CoreFoundation 0x00007fff864c21bf __CFRunLoopRun + 927
43 com.apple.CoreFoundation 0x00007fff864c1bd8 CFRunLoopRunSpecific + 296
44 com.apple.HIToolbox 0x00007fff8b8af56f RunCurrentEventLoopInMode + 235
45 com.apple.HIToolbox 0x00007fff8b8af1ee ReceiveNextEventCommon + 179
46 com.apple.HIToolbox 0x00007fff8b8af12b _BlockUntilNextEventMatchingListInModeWithFilter + 71
47 com.apple.AppKit 0x00007fff8f6b48ab _DPSNextEvent + 978
48 com.apple.AppKit 0x00007fff8f6b3e58 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 346
49 com.apple.AppKit 0x00007fff8f6a9af3 -[NSApplication run] + 594
50 libqcocoa.dylib 0x000000010b87b6bf 0x10b855000 + 157375
51 org.qt-project.QtCore 0x000000010866f781 QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) + 401
52 org.qt-project.QtCore 0x0000000108673bb5 QCoreApplication::exec() + 341
53 com.yourcompany.OpenSkyStacker 0x0000000102a48746 main + 70
54 libdyld.dylib 0x00007fff905045c9 start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8eeaa232 kevent64 + 10
1 libdispatch.dylib 0x00007fff8e650a6a _dispatch_mgr_thread + 52

Thread 2 Crashed:: QThread
0 libsystem_kernel.dylib 0x00007fff8eea9286 __pthread_kill + 10
1 libsystem_c.dylib 0x00007fff91be59b3 abort + 129
2 libc++abi.dylib 0x00007fff846cba21 abort_message + 257
3 libc++abi.dylib 0x00007fff846f39b9 default_terminate_handler() + 243
4 libobjc.A.dylib 0x00007fff8bd557eb _objc_terminate() + 124
5 libc++abi.dylib 0x00007fff846f10a1 std::__terminate(void ()()) + 8
6 libc++abi.dylib 0x00007fff846f0b30 __cxa_throw + 121
7 libopencv_core.3.3.dylib 0x0000000102c48f66 cv::error(cv::Exception const&) + 296
8 libopencv_core.3.3.dylib 0x0000000102c48865 cv::error(int, cv::String const&, char const
, char const*, int) + 194
9 libopencv_core.3.3.dylib 0x0000000102aab734 0x102aa5000 + 26420
10 libopencv_core.3.3.dylib 0x0000000102aad5c3 cv::subtract(cv::_InputArray const&, cv::_InputArray const&, cv::_OutputArray const&, cv::_InputArray const&, int) + 99
11 com.yourcompany.OpenSkyStacker 0x0000000102a5821b ImageStacker::ProcessNonRaw() + 1675
12 com.yourcompany.OpenSkyStacker 0x0000000102a61bcb ImageStacker::Process() + 411
13 org.qt-project.QtCore 0x000000010869d38c QObject::event(QEvent*) + 156
14 org.qt-project.QtWidgets 0x00000001079e158d QApplicationPrivate::notify_helper(QObject*, QEvent*) + 269
15 org.qt-project.QtWidgets 0x00000001079e3ed2 QApplication::notify(QObject*, QEvent*) + 5906
16 org.qt-project.QtCore 0x0000000108673544 QCoreApplication::notifyInternal2(QObject*, QEvent*) + 164
17 org.qt-project.QtCore 0x00000001086741c8 QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) + 600
18 org.qt-project.QtCore 0x00000001086c6c49 QEventDispatcherUNIX::processEvents(QFlagsQEventLoop::ProcessEventsFlag) + 73
19 org.qt-project.QtCore 0x000000010866f781 QEventLoop::exec(QFlagsQEventLoop::ProcessEventsFlag) + 401
20 org.qt-project.QtCore 0x00000001084adeee QThread::exec() + 110
21 org.qt-project.QtCore 0x00000001084b185a 0x108487000 + 174170
22 libsystem_pthread.dylib 0x00007fff8596905a _pthread_body + 131
23 libsystem_pthread.dylib 0x00007fff85968fd7 _pthread_start + 176
24 libsystem_pthread.dylib 0x00007fff859663ed thread_start + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff8eea44de mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8eea364f mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff864c2eb4 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff864c237b __CFRunLoopRun + 1371
4 com.apple.CoreFoundation 0x00007fff864c1bd8 CFRunLoopRunSpecific + 296
5 com.apple.AppKit 0x00007fff8f77c56b _NSEventThread + 137
6 libsystem_pthread.dylib 0x00007fff8596905a _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff85968fd7 _pthread_start + 176
8 libsystem_pthread.dylib 0x00007fff859663ed thread_start + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff8eea994a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff859663dd start_wqthread + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff8eea994a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff859663dd start_wqthread + 13

Thread 6:
0 libsystem_kernel.dylib 0x00007fff8eea994a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff859663dd start_wqthread + 13

Thread 7:
0 libsystem_kernel.dylib 0x00007fff8eea994a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff859663dd start_wqthread + 13

Thread 8:
0 libsystem_kernel.dylib 0x00007fff8eea994a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff859663dd start_wqthread + 13

Thread 9:
0 libsystem_kernel.dylib 0x00007fff8eea994a __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff859663dd start_wqthread + 13

Thread 10:

Thread 2 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000000000006 rcx: 0x000000011055d0c8 rdx: 0x0000000000000000
rdi: 0x000000000000757f rsi: 0x0000000000000006 rbp: 0x000000011055d0f0 rsp: 0x000000011055d0c8
r8: 0x0000000000000000 r9: 0x00007ffb44700000 r10: 0x0000000008000000 r11: 0x0000000000000206
r12: 0x000000011055d250 r13: 0x000000010371cb0f r14: 0x0000000110560000 r15: 0x000000011055d130
rip: 0x00007fff8eea9286 rfl: 0x0000000000000206 cr2: 0x00007fff74fd3fd8

Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133

Binary Images:
0x102a44000 - 0x102a85fff +com.yourcompany.OpenSkyStacker (0) /Applications/OpenSkyStacker.app/Contents/MacOS/OpenSkyStacker
0x102aa5000 - 0x103a6fff7 +libopencv_core.3.3.dylib (0) /Applications/OpenSkyStacker.app/Contents/Frameworks/libopencv_core.3.3.dylib
0x103b6c000 - 0x103c08ff7 +libopencv_imgcodecs.3.3.dylib (0) <73AFDB32-A8FC-31C0-A53F-12D031126C53> /Applications/OpenSkyStacker.app/Contents/Frameworks/libopencv_imgcodecs.3.3.dylib
0x103c16000 - 0x1074d6fcf +libopencv_imgproc.3.3.dylib (0) <8E3114C1-4898-396E-AA6C-8041F1BA27EB> /Applications/OpenSkyStacker.app/Contents/Frameworks/libopencv_imgproc.3.3.dylib
0x10789b000 - 0x10792bff7 +libraw.16.dylib (0) <49069495-7844-303B-B9EE-767F54F828FC> /Applications/OpenSkyStacker.app/Contents/Frameworks/libraw.16.dylib
0x107987000 - 0x1079beff7 +liblcms2.2.dylib (0) <36AB2D1C-84C3-3695-A257-4F045CDBE6BA> /Applications/OpenSkyStacker.app/Contents/Frameworks/liblcms2.2.dylib
0x1079d0000 - 0x107e34fff +org.qt-project.QtWidgets (5.8 - 5.8.0) <751070F0-6091-3A9C-8B6F-31C363B69435> /Applications/OpenSkyStacker.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
0x107f8f000 - 0x108390fef +org.qt-project.QtGui (5.8 - 5.8.0) /Applications/OpenSkyStacker.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
0x108487000 - 0x108944fff +org.qt-project.QtCore (5.8 - 5.8.0) <2C2FCD3B-2BCA-3941-B85E-9F334EB73FF8> /Applications/OpenSkyStacker.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
0x1089f3000 - 0x1089f7fff com.apple.agl (3.3.0 - AGL-3.3.0) <4E8F579B-A2E2-3A27-96D7-02A9465A78D8> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x108a04000 - 0x108a27ffb +libpng16.16.dylib (0) <949DC3DD-DB87-3DE9-9615-FCF16DCBAC61> /Applications/OpenSkyStacker.app/Contents/Frameworks/libpng16.16.dylib
0x108a2e000 - 0x108a87ff3 +libtiff.5.dylib (0) <57C7D093-4311-3042-856E-F8E22B4B28D1> /Applications/OpenSkyStacker.app/Contents/Frameworks/libtiff.5.dylib
0x108a93000 - 0x108a9dffb +libImath-2_2.12.dylib (0) /Applications/OpenSkyStacker.app/Contents/Frameworks/libImath-2_2.12.dylib
0x108aa6000 - 0x108d33ff3 +libIlmImf-2_2.22.dylib (0) <4B538982-7221-3AB5-B25A-DA61B263404F> /Applications/OpenSkyStacker.app/Contents/Frameworks/libIlmImf-2_2.22.dylib
0x108d70000 - 0x108d74ff7 +libIex-2_2.12.dylib (0) /Applications/OpenSkyStacker.app/Contents/Frameworks/libIex-2_2.12.dylib
0x108d7f000 - 0x108dc0ffb +libHalf.12.dylib (0) <4DC6F798-7B3B-3B3B-9C45-15C5A8A5C636> /Applications/OpenSkyStacker.app/Contents/Frameworks/libHalf.12.dylib
0x108dc8000 - 0x108dcbff3 +libIlmThread-2_2.12.dylib (0) /Applications/OpenSkyStacker.app/Contents/Frameworks/libIlmThread-2_2.12.dylib
0x108dd0000 - 0x108dd0ff5 +cl_kernels (???) cl_kernels
0x108dd5000 - 0x108e01fff +libjpeg.9.dylib (0) <47169C46-6D4C-3D79-9A59-AFE1E697CF53> /Applications/OpenSkyStacker.app/Contents/Frameworks/libjpeg.9.dylib
0x108e08000 - 0x108e08fef +cl_kernels (???) <2C90B29F-14BF-486E-B754-B291905EC738> cl_kernels
0x108e0a000 - 0x108e0bff3 +libIexMath-2_2.12.dylib (0) /Applications/OpenSkyStacker.app/Contents/Frameworks/libIexMath-2_2.12.dylib
0x108f2b000 - 0x108f32fff com.apple.CacheDelete (1.0 - 1) /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x108f53000 - 0x108f54fe5 +cl_kernels (???) <40D6A099-5F4C-4C3F-AC4D-91513D1AC00E> cl_kernels
0x10b855000 - 0x10b9a2fff +libqcocoa.dylib (0) /Applications/OpenSkyStacker.app/Contents/PlugIns/platforms/libqcocoa.dylib
0x10b9e7000 - 0x10ba12ff7 +org.qt-project.QtPrintSupport (5.8 - 5.8.0) <1FB7C62E-8FDA-3E8F-A1E4-3AC987027D3E> /Applications/OpenSkyStacker.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport
0x10c418000 - 0x10c418ffe +cl_kernels (???) <5194E7BA-7829-446A-9933-4DE5534CC003> cl_kernels
0x10ca47000 - 0x10ca4bfff com.apple.qldisplay.Generic (5.0 - 675.43) <6D99102E-6A85-3F5F-B819-3C890B321435> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/PlugIns/Generic.qldisplay/Contents/MacOS/Generic
0x10cc1b000 - 0x10cc36ff3 com.apple.security.csparser (3.0 - 57031.40.6) <806B54FA-CAA7-3060-A2FE-2B0F196FDBC7> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x10fd65000 - 0x10fe4bfef unorm8_bgra.dylib (2.4.5) <5F488C7E-2FB2-3C66-9764-28CF16B03E7A> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x11038e000 - 0x110394ff7 +libqgif.dylib (0) <3728B87B-BBC1-3401-8CBE-10D41C5F211B> /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqgif.dylib
0x110398000 - 0x11039ffff +libqicns.dylib (0) <263E39CD-0337-3EBE-8A0B-57FB53655BC3> /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqicns.dylib
0x1103a4000 - 0x1103a9fff +libqico.dylib (0) <0758E180-49D4-39BB-AAD7-00BEF311F5B6> /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqico.dylib
0x1103ae000 - 0x1103e8fff +libqjpeg.dylib (0) <665B03D2-613E-32E8-89FE-D71354B63C0B> /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqjpeg.dylib
0x1103ee000 - 0x1103f2fff +libqmacjp2.dylib (0) <3682C928-864F-3B9C-841E-2F6AD9286ECA> /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqmacjp2.dylib
0x1103f6000 - 0x1103faff7 +libqtga.dylib (0) /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqtga.dylib
0x1103fe000 - 0x110451fff +libqtiff.dylib (0) /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqtiff.dylib
0x110459000 - 0x11045dfff +libqwbmp.dylib (0) /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqwbmp.dylib
0x110461000 - 0x1104d6ff7 +libqwebp.dylib (0) <5332EC2A-28E6-3802-9407-E61AE49290B6> /Applications/OpenSkyStacker.app/Contents/PlugIns/imageformats/libqwebp.dylib
0x114626000 - 0x114a60fff com.apple.AMDRadeonX4000GLDriver (1.32.25 - 1.3.2) <362F6BAD-425D-32F0-8BFC-E9A32ABCA3E2> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver
0x11528a000 - 0x11528affe +cl_kernels (???) <5194E7BA-7829-446A-9933-4DE5534CC003> cl_kernels
0x11528e000 - 0x11528efef +cl_kernels (???) <116E96E2-2D3F-4E8A-ADA6-402114A749DE> cl_kernels
0x116f84000 - 0x117064ff7 unorm8_rgba.dylib (2.4.5) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib
0x11c71e000 - 0x11cc26fff com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.6.33 - 10.0.6) /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
0x7fff654a1000 - 0x7fff654d7887 dyld (353.2.3) /usr/lib/dyld
0x7fff82bb4000 - 0x7fff82bdfff3 libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
0x7fff83495000 - 0x7fff834d5ff7 libGLImage.dylib (11.1.2) <9B05F3BF-D111-3B01-B7F8-C5EF7E02000B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff834d6000 - 0x7fff834d9fff libCGXCoreImage.A.dylib (788.3) <6FDD29AD-EADD-39E9-AD1F-F4FFCA6B669C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x7fff8367e000 - 0x7fff83690ff7 com.apple.CoreDuetDaemonProtocol (1.0 - 1) /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
0x7fff836a0000 - 0x7fff836b1ff7 libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
0x7fff8376b000 - 0x7fff83776fff libGL.dylib (11.1.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff83777000 - 0x7fff83890ffb com.apple.CoreText (352.0 - 454.10) <3293BF91-B587-3B49-A159-A04D58533F14> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff83891000 - 0x7fff838a7ff7 com.apple.CoreMediaAuthoring (2.2 - 951) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff83b5f000 - 0x7fff83b6aff7 libcsfde.dylib (471.30.1) /usr/lib/libcsfde.dylib
0x7fff83b90000 - 0x7fff83bdfff7 libcurl.4.dylib (83.40.2) /usr/lib/libcurl.4.dylib
0x7fff83be0000 - 0x7fff83cf2ff7 libvDSP.dylib (516) <151B3CCB-77D3-3715-A3D0-7C74CD5C7FFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff83cf3000 - 0x7fff83cfbff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff83cfc000 - 0x7fff83cfffff com.apple.IOSurface (97.4 - 97.4) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff83d14000 - 0x7fff83d38fef libJPEG.dylib (1239) <75667D4A-9359-3178-9D3A-2AE5A60DE55F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff83d46000 - 0x7fff83dcfff7 com.apple.CoreSymbolication (3.1 - 57020.2) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff83dd0000 - 0x7fff83ec2ff3 libxml2.2.dylib (26.1) <3FBA890F-2850-3A45-87EA-DB6892BDEB60> /usr/lib/libxml2.2.dylib
0x7fff83ec3000 - 0x7fff83ec5fff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
0x7fff83ec6000 - 0x7fff83ec6fff com.apple.Carbon (154 - 157) <9BF51672-1684-3FDE-A561-FC59A2864EF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff83edd000 - 0x7fff83ee6fff libGFXShared.dylib (11.1.2) <7F9F6175-E993-3014-8C9B-1F08CE7C75A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff83efa000 - 0x7fff83f78fff com.apple.CoreServices.OSServices (640.4 - 640.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff83f79000 - 0x7fff83ff1ff7 com.apple.SystemConfiguration (1.14.4 - 1.14) <3DFFD7F7-BD23-3F4C-A209-C4A0D99F6573> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff840a2000 - 0x7fff840d1ff7 com.apple.CoreServicesInternal (221.7.2 - 221.7.2) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff840d2000 - 0x7fff84141fff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff84142000 - 0x7fff8414dfff libcommonCrypto.dylib (60061.30.1) /usr/lib/system/libcommonCrypto.dylib
0x7fff84150000 - 0x7fff84665ffb com.apple.JavaScriptCore (10600 - 10600.8.7) <480CDC12-5A1C-321C-B32F-673F0B3BA8F9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff84666000 - 0x7fff8466bff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib
0x7fff8466c000 - 0x7fff84678ff7 com.apple.OpenDirectory (10.10 - 187) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff84684000 - 0x7fff8468bff7 libcompiler_rt.dylib (35) /usr/lib/system/libcompiler_rt.dylib
0x7fff8468c000 - 0x7fff846b9fff com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff846ba000 - 0x7fff846caff7 libbsm.0.dylib (34) /usr/lib/libbsm.0.dylib
0x7fff846cb000 - 0x7fff846f6fff libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
0x7fff8473e000 - 0x7fff84752feb libCGInterfaces.dylib (294.1) <390D4B3F-B738-3D33-BEDB-07E3F0F6B42C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff84753000 - 0x7fff847a0ff3 com.apple.CoreMediaIO (601.0 - 4760) <4D52EBBF-5DE1-3778-BDE5-DE8540E7DE5C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff847a3000 - 0x7fff847f4ff7 com.apple.AppleVAFramework (5.0.31 - 5.0.31) <17C35538-7C2B-3735-A1B3-E8487EED0668> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff84802000 - 0x7fff8482bffb libxslt.1.dylib (13) /usr/lib/libxslt.1.dylib
0x7fff8482c000 - 0x7fff84b13ffb com.apple.CoreServices.CarbonCore (1108.6 - 1108.6) <8953580E-7857-33B2-AA64-98296830D3A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff84b14000 - 0x7fff84b21fff libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
0x7fff84b22000 - 0x7fff84b5dfff com.apple.Symbolication (1.4 - 56045) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff84b60000 - 0x7fff84b62fff libsystem_sandbox.dylib (358.20.5) <3F5E973F-C702-31AC-97BC-05F5C195683C> /usr/lib/system/libsystem_sandbox.dylib
0x7fff84b63000 - 0x7fff84b7cff7 com.apple.CFOpenDirectory (10.10 - 187) <3FCEE6F7-A8C6-3222-B22D-8AD290E477E2> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff84b7d000 - 0x7fff84bc7fff com.apple.HIServices (1.22 - 523) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff84bce000 - 0x7fff84be3fff com.apple.ToneKit (1.0 - 1) <25D0FF56-B802-359D-9CA1-D530F4890D87> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff84be4000 - 0x7fff84f4ffff com.apple.VideoToolbox (1.0 - 1562.238) <510956DF-E324-3974-A83B-C0C74A6F812C> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff84fd5000 - 0x7fff84fd6ff3 libSystem.B.dylib (1213) <1866C519-C5F3-3D09-8C17-A8F703664521> /usr/lib/libSystem.B.dylib
0x7fff84fd7000 - 0x7fff85031ff7 com.apple.LanguageModeling (1.0 - 1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff85032000 - 0x7fff85334ffb com.apple.GeoServices (1.0 - 1077.0.18) <2BBF8B44-DD46-3432-8C84-6D6AA004C233> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff85335000 - 0x7fff8536dfff com.apple.RemoteViewServices (2.0 - 99) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff8579b000 - 0x7fff857aaff7 com.apple.ToneLibrary (1.0 - 1) <179C7D61-CB88-3CE3-9F06-4D60D13D616C> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff857ab000 - 0x7fff857f6ff7 com.apple.CloudDocs (1.0 - 321.10) /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff857f7000 - 0x7fff85895fff com.apple.Metadata (10.7.0 - 917.36) <00C4CB5D-E723-3612-84E0-439098392CDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff85896000 - 0x7fff858bbfff libPng.dylib (1239) <0F0DDDBD-E508-377D-859F-14D11D019705> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff858bc000 - 0x7fff858c3fff com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff85947000 - 0x7fff85948ff7 libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
0x7fff85949000 - 0x7fff85964fff com.apple.AppleVPAFramework (1.4.5 - 1.4.5) /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff85965000 - 0x7fff8596efff libsystem_pthread.dylib (105.40.1) /usr/lib/system/libsystem_pthread.dylib
0x7fff8596f000 - 0x7fff859bbff7 libcups.2.dylib (408.2) /usr/lib/libcups.2.dylib
0x7fff859bc000 - 0x7fff85b4bfff libGLProgrammability.dylib (11.1.2) <11882D43-25B4-331D-9428-C97F4A88DA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff85b4c000 - 0x7fff85ba9fff com.apple.QuickLookFramework (5.0 - 675.43) <506D60B4-B188-3D0A-9187-0404A60A9B06> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff85baa000 - 0x7fff85bacfff libRadiance.dylib (1239) <594FD1C9-2041-3877-9AD2-0A977EBBB1D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff85bad000 - 0x7fff85c5cfe7 libvMisc.dylib (516) <6739E390-46E7-3BFA-9B69-B278562326E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff85cc8000 - 0x7fff85ccfff7 com.apple.phonenumbers (1.1.1 - 105) /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff85cd0000 - 0x7fff85d23ffb libAVFAudio.dylib (118.6) <2441D4C1-D8FB-3DA9-9DD7-914E03413882> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
0x7fff85d24000 - 0x7fff85d4bfff com.apple.shortcut (2.14 - 2.14) <0E9228EC-E688-3E83-9516-5211FFEA923E> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
0x7fff85d4c000 - 0x7fff85d98fff com.apple.corelocation (1486.17 - 1615.24) <8825B3E2-E053-3E01-AE31-793443962D06> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff85d99000 - 0x7fff85d9bfff com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff85d9c000 - 0x7fff85da0ff7 libGIF.dylib (1239) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff85dca000 - 0x7fff85ddcff7 libsasl2.2.dylib (194.1) <35371406-75EF-304A-A073-956C40373555> /usr/lib/libsasl2.2.dylib
0x7fff85ddd000 - 0x7fff85de1fff com.apple.IOAccelerator (156.16 - 156.16) <12DE1474-4B2A-3D7D-ACF9-DDAF66A6936A> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff85de2000 - 0x7fff85de8ff7 libsystem_networkextension.dylib (167.40.3) /usr/lib/system/libsystem_networkextension.dylib
0x7fff85edc000 - 0x7fff85ee4ff3 com.apple.CoreServices.FSEvents (1210.20.1 - 1210.20.1) <84F79D3E-7B5E-3C93-8479-35794A3F125E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff85ee5000 - 0x7fff85f0bfff com.apple.ChunkingLibrary (2.1 - 163.6) <29D4CB95-42EF-34C6-8182-BDB6F7BB1E79> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff85f0c000 - 0x7fff85f0ffff com.apple.help (1.3.3 - 46) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff85f38000 - 0x7fff85f3afff libCVMSPluginSupport.dylib (11.1.2) <1C5C1757-67F1-3C23-90EF-643619A0E7DC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff85f3c000 - 0x7fff85f64fff libxpc.dylib (559.40.1) <5C829202-962E-3744-8B50-00D38CC88E84> /usr/lib/system/libxpc.dylib
0x7fff85f65000 - 0x7fff85f72ff7 libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
0x7fff85f73000 - 0x7fff861b8ff7 com.apple.AddressBook.framework (9.0 - 1579) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff861b9000 - 0x7fff861bffff com.apple.speech.recognition.framework (5.0.9 - 5.0.9) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff862a2000 - 0x7fff86403fff com.apple.avfoundation (2.0 - 889.210) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff86450000 - 0x7fff867e8ff7 com.apple.CoreFoundation (6.9 - 1153.18) <5C0892B8-9691-341F-9279-CA3A74D59AA0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff867f1000 - 0x7fff8685fff3 com.apple.Heimdal (4.0 - 2.0) <8D1667CF-D454-3E07-A58E-E15591B5A95E> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff86860000 - 0x7fff86954fff libFontParser.dylib (134.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff86955000 - 0x7fff86957ff7 libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
0x7fff86958000 - 0x7fff86c83ff7 com.apple.FinderKit (1.3.5 - 1.3.5) <20969B46-A58F-3387-BB21-6BEF1F3E5242> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
0x7fff86c84000 - 0x7fff86c95ff3 libsystem_coretls.dylib (35.40.1) <155DA0A9-2046-332E-BFA3-D7974A51F731> /usr/lib/system/libsystem_coretls.dylib
0x7fff86c9d000 - 0x7fff86d04ff7 com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff86d05000 - 0x7fff86d07ff7 libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
0x7fff86d08000 - 0x7fff86daffff com.apple.PDFKit (3.1 - 3.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff86db0000 - 0x7fff86db5ff7 com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff86db6000 - 0x7fff86dbefff libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
0x7fff86dbf000 - 0x7fff86dcbff7 libGPUSupportMercury.dylib (11.1.2) <16B2CA57-479C-3F0F-BF87-03A2C6923D5A> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff86dcc000 - 0x7fff8709bff3 com.apple.CoreImage (10.3.4) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8709c000 - 0x7fff87108ff3 com.apple.MMCS (1.3 - 327.5) /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
0x7fff87112000 - 0x7fff87112fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff87113000 - 0x7fff87117fff libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
0x7fff87118000 - 0x7fff87122fff com.apple.IntlPreferences (2.0 - 150.1) <79F95D7D-F64F-3A4E-8A42-AE5BF1577195> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff87a69000 - 0x7fff87a7afff libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
0x7fff87a95000 - 0x7fff87ba4ff3 com.apple.desktopservices (1.9.3 - 1.9.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff87ba5000 - 0x7fff87c0cffb com.apple.datadetectorscore (6.0 - 396.1.2) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff87c0d000 - 0x7fff87c35fff libRIP.A.dylib (788.3) <6AB1CA86-38C8-33E3-AC07-3A065666E0F9> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff87d09000 - 0x7fff87d82fe7 libcorecrypto.dylib (233.30.1) <5779FFA0-4D9A-3AD4-B7F2-618227621DC8> /usr/lib/system/libcorecrypto.dylib
0x7fff87d83000 - 0x7fff87d8eff7 com.apple.DirectoryService.Framework (10.10 - 187) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff87d8f000 - 0x7fff87d90fff liblangid.dylib (117) /usr/lib/liblangid.dylib
0x7fff87d91000 - 0x7fff87debfff com.apple.Suggestions (4.0 - 165) <34A8FB72-F663-3085-B4D0-6982B0BDCF21> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
0x7fff87dec000 - 0x7fff87e18fff libsandbox.1.dylib (358.20.5) <533B9C4A-6C92-3658-95B9-D30BC135796B> /usr/lib/libsandbox.1.dylib
0x7fff87e19000 - 0x7fff87fa7fff libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff882b2000 - 0x7fff88343ff7 libCoreStorage.dylib (471.30.1) <9D95399F-1AC5-325F-8337-6E13AD99E44B> /usr/lib/libCoreStorage.dylib
0x7fff88344000 - 0x7fff88395fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <450293F7-DAE7-3DD0-8F7C-71FC2FD72627> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff893f1000 - 0x7fff893fdfff com.apple.HelpData (2.1.4 - 90) <02C6B7E6-1CC4-30E8-AD04-2794BECCF99C> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
0x7fff893fe000 - 0x7fff89719fcf com.apple.vImage (8.0 - 8.0) <1183FE6A-FDB6-3B3B-928D-50C7909F2308> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8974b000 - 0x7fff8974effb libCGXType.A.dylib (788.3) <7CC6CD5B-AD6B-3B36-9165-BFB1E5274F69> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff8974f000 - 0x7fff89b7ffff com.apple.vision.FaceCore (3.1.6 - 3.1.6) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff89b80000 - 0x7fff8a3c1ff3 com.apple.CoreGraphics (1.600.0 - 788.3) <0AAD1F22-9823-3D31-A25B-F8C1D7915AC4> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8a3e6000 - 0x7fff8a3ebff7 libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
0x7fff8a3f7000 - 0x7fff8a405fff com.apple.AddressBook.ContactsFoundation (9.0 - 1579) <34ED9046-0157-399F-9742-2FC2D098E368> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff8a53d000 - 0x7fff8a569fff com.apple.framework.SystemAdministration (1.0 - 1.0) <9F77597C-BAB8-3D86-B6CC-96D54D89E6AE> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x7fff8a5b1000 - 0x7fff8a5b8fff com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff8a62e000 - 0x7fff8a62ffff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8ac9a000 - 0x7fff8aca8ff7 com.apple.opengl (11.1.2 - 11.1.2) <5F355713-4637-33CD-9CBA-4B4CA43FB0FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8aca9000 - 0x7fff8acc4ff7 com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff8acc5000 - 0x7fff8ae75ff3 com.apple.QuartzCore (1.10 - 361.19) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8ae76000 - 0x7fff8aee2fff com.apple.framework.CoreWLAN (5.0 - 500.35.2) <03697149-1CDD-32FF-B564-1C1EF5E9E5C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff8afc1000 - 0x7fff8afd7ff7 libsystem_asl.dylib (267) /usr/lib/system/libsystem_asl.dylib
0x7fff8afe5000 - 0x7fff8b3bcfe7 com.apple.CoreAUC (211.1.0 - 211.1.0) <12645629-E065-388E-A6B5-094A240578CE> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff8b3bd000 - 0x7fff8b3edff3 com.apple.GSS (4.0 - 2.0) <97F2A028-44CF-3188-B863-F4EEB39CBDBD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff8b3ee000 - 0x7fff8b428ffb com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff8b429000 - 0x7fff8b42dfff com.apple.LoginUICore (3.2 - 3.2) <417954C5-1675-31A8-9631-6B56E9AA3E93> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x7fff8b42e000 - 0x7fff8b443ff7 com.apple.AppContainer (4.0 - 238.20.2) <2AA2EF49-9F38-31F6-8B08-8CC7C26F57F3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff8b444000 - 0x7fff8b448fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff8b449000 - 0x7fff8b4ebfff com.apple.Bluetooth (4.3.6 - 4.3.6f3) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff8b4ec000 - 0x7fff8b762ff7 com.apple.security (7.0 - 57031.40.6) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff8b791000 - 0x7fff8b7a0fff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff8b7fe000 - 0x7fff8b872ffb com.apple.securityfoundation (6.0 - 55126) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8b873000 - 0x7fff8b87cff7 libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
0x7fff8b87d000 - 0x7fff8bb82ff3 com.apple.HIToolbox (2.1.1 - 758.7) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8bb83000 - 0x7fff8bcb5ff7 com.apple.MediaControlSender (2.0 - 215.18) <88726256-A71E-33A8-A56C-ABA208951C92> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSender
0x7fff8bcb6000 - 0x7fff8bcbbffb libheimdal-asn1.dylib (398.40.1) <7D2BE3DE-60F7-3A6E-A92E-DA0EF9D3417E> /usr/lib/libheimdal-asn1.dylib
0x7fff8bd43000 - 0x7fff8bf3d46f libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
0x7fff8bf61000 - 0x7fff8bff5fff com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff8bff6000 - 0x7fff8c012ff7 libsystem_malloc.dylib (53.30.1) /usr/lib/system/libsystem_malloc.dylib
0x7fff8c013000 - 0x7fff8c013ff7 liblaunch.dylib (559.40.1) <4F81CA3A-D2CE-3030-A89D-42F3DAD7BA8F> /usr/lib/system/liblaunch.dylib
0x7fff8c018000 - 0x7fff8c0eeff3 com.apple.DiskImagesFramework (10.10.5 - 398) <23E788A6-9A11-3232-A882-BA16D0C54880> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff8c34e000 - 0x7fff8c34efff libOpenScriptingUtil.dylib (162.2) /usr/lib/libOpenScriptingUtil.dylib
0x7fff8c34f000 - 0x7fff8c36fff7 com.apple.MultitouchSupport.framework (264.6 - 264.6) <1539F1F6-6334-37F3-9C52-02EFFBF4835D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8c370000 - 0x7fff8c370fff com.apple.CoreServices (62 - 62) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8c379000 - 0x7fff8c4a9fff com.apple.UIFoundation (1.0 - 1) <466BDFA8-0B9F-3AB0-989D-F9779422926A> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8c4aa000 - 0x7fff8c4ebfff libGLU.dylib (11.1.2) <2BA52A8D-ED35-3D86-B2D6-41479969C96D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8c4ec000 - 0x7fff8c527fff com.apple.QD (301 - 301) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8c550000 - 0x7fff8c56bff7 libCRFSuite.dylib (34) /usr/lib/libCRFSuite.dylib
0x7fff8c56d000 - 0x7fff8c59efff libtidy.A.dylib (15.15) <37FC944D-271A-386A-9ADD-FA33AD48F96D> /usr/lib/libtidy.A.dylib
0x7fff8c59f000 - 0x7fff8c5abfff com.apple.speech.synthesis.framework (5.3.11 - 5.3.11) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff8c5d2000 - 0x7fff8c5e9ff7 libLinearAlgebra.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff8c79a000 - 0x7fff8ca19ff7 com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8ca4d000 - 0x7fff8ca67ff3 com.apple.Ubiquity (1.3 - 313) /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
0x7fff8ca68000 - 0x7fff8ca6afff libquarantine.dylib (76.20.1) <7AF90041-2768-378A-925A-D83161863642> /usr/lib/system/libquarantine.dylib
0x7fff8ca6b000 - 0x7fff8ca6bfff com.apple.Cocoa (6.8 - 21) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8ca6c000 - 0x7fff8ca6dfff libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff8cc00000 - 0x7fff8d00dff7 libLAPACK.dylib (1128) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8d05e000 - 0x7fff8d0adff7 com.apple.opencl (2.4.2 - 2.4.2) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8d0ba000 - 0x7fff8d0edfff com.apple.MediaKit (16 - 757.2) <2912E5C2-085F-3FE2-8531-23B6E894B0F0> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff8d112000 - 0x7fff8d1a9fff com.apple.CoreMedia (1.0 - 1562.238) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff8d1aa000 - 0x7fff8d205fe7 libTIFF.dylib (1239) <568B04C1-118C-3E22-87E5-E1FF7AAE589C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8d248000 - 0x7fff8d278ff3 com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff8d2fb000 - 0x7fff8d338ff3 com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff8d339000 - 0x7fff8d343ff7 com.apple.NetAuth (5.2 - 5.2) <2BBD749A-8E18-35B8-8E48-A90347C1CCA7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8d344000 - 0x7fff8d5aeff7 com.apple.imageKit (2.6.1 - 850) <612201FE-768E-386B-82E3-764038B40120> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff8df56000 - 0x7fff8e166ff7 com.apple.CFNetwork (720.5.7 - 720.5.7) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff8e1c6000 - 0x7fff8e32dffb com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5678FC94-456A-3F5F-BA9A-10EB6E462997> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff8e389000 - 0x7fff8e3a8fff com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
0x7fff8e3a9000 - 0x7fff8e408fff com.apple.AE (681.5 - 681.7) <2BF39455-1CDD-392C-824A-9972C6B1FB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff8e409000 - 0x7fff8e411fe7 libcldcpuengine.dylib (2.4.5) <6CC680F9-0D13-333B-B151-F0D9C631A1E5> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff8e412000 - 0x7fff8e414fff com.apple.SecCodeWrapper (4.0 - 238.20.2) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff8e415000 - 0x7fff8e42fff7 libextension.dylib (55.2) <3BB019CA-199A-36AC-AA22-14B562138545> /usr/lib/libextension.dylib
0x7fff8e555000 - 0x7fff8e57dfff libsystem_info.dylib (459.40.1) <2E16C4B3-A327-3957-9C41-143911979A1E> /usr/lib/system/libsystem_info.dylib
0x7fff8e57e000 - 0x7fff8e5b6fff libsystem_network.dylib (412.20.3) <6105C134-6722-3C0A-A4CE-5E1261E2E1CC> /usr/lib/system/libsystem_network.dylib
0x7fff8e64b000 - 0x7fff8e64bff7 libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
0x7fff8e64c000 - 0x7fff8e676ff7 libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
0x7fff8e677000 - 0x7fff8e6a7fff libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
0x7fff8e6b7000 - 0x7fff8e6f0fff com.apple.AirPlaySupport (2.0 - 215.18) /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySupport
0x7fff8e6f1000 - 0x7fff8e786ff7 com.apple.ColorSync (4.9.0 - 4.9.0) <9150C2B7-2E6E-3509-96EA-7B3F959F049E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8e787000 - 0x7fff8e78ffff libMatch.1.dylib (24) /usr/lib/libMatch.1.dylib
0x7fff8e790000 - 0x7fff8e7acff7 com.apple.pluginkit.framework (1.0 - 1) /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff8e7ad000 - 0x7fff8e8e7fff com.apple.ImageIO.framework (3.3.0 - 1239) <6033D915-B9A2-3F21-8F35-2E18EF66CA6F> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff8e9a5000 - 0x7fff8e9b2ff3 com.apple.ProtocolBuffer (1 - 228.0.1) <3429EB06-9F0E-355F-B9AB-F72879177398> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff8ea02000 - 0x7fff8ea05ff7 com.apple.Mangrove (1.0 - 1) <6326024D-5C8D-3F59-9468-ACA1E01BC70C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff8ea06000 - 0x7fff8ed37fff com.apple.Foundation (6.9 - 1154) <49EE64E1-9F53-35D1-A481-2EFE2789B254> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8ede5000 - 0x7fff8edffff7 liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
0x7fff8ee2c000 - 0x7fff8ee37ff7 com.apple.CrashReporterSupport (10.10 - 631) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff8ee38000 - 0x7fff8ee39ffb libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
0x7fff8ee3a000 - 0x7fff8ee47ff7 com.apple.SpeechRecognitionCore (2.1.2 - 2.1.2) <551322E2-C1E4-3378-A218-F362985E3E3C> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff8ee48000 - 0x7fff8ee7fffb com.apple.LDAPFramework (2.4.28 - 194.5) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff8ee80000 - 0x7fff8ee92ff7 com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff8ee93000 - 0x7fff8eeb0fff libsystem_kernel.dylib (2782.40.9) <16AD15EF-3DAE-3F63-9D26-26CCE1920762> /usr/lib/system/libsystem_kernel.dylib
0x7fff8eeb1000 - 0x7fff8eeb8ff7 libCGCMS.A.dylib (788.3) <1A47CDD9-99AE-3BD2-85F1-339FC169B16E> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
0x7fff8eeb9000 - 0x7fff8eec2fff com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff8eec3000 - 0x7fff8ef35fff com.apple.framework.IOKit (2.0.2 - 1050.20.2) <09C0518C-90DF-3FC3-96D6-34D35F72C8EF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8ef36000 - 0x7fff8ef3efff libsystem_dnssd.dylib (576.30.4) <0CEB5910-843F-315C-A1DE-5D955A48A045> /usr/lib/system/libsystem_dnssd.dylib
0x7fff8ef3f000 - 0x7fff8f42ffff com.apple.MediaToolbox (1.0 - 1562.238) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff8f430000 - 0x7fff8f4c6ff7 com.apple.cloudkit.CloudKit (283.67.4 - 283.67.4) /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff8f4c7000 - 0x7fff8f50dff7 libauto.dylib (186) /usr/lib/libauto.dylib
0x7fff8f623000 - 0x7fff901a4ff7 com.apple.AppKit (6.9 - 1348.17) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff901a5000 - 0x7fff90229fff com.apple.PerformanceAnalysis (1.0 - 1) <4E934EE0-5CC6-3D54-8FA2-5B8AE669D775> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff9022a000 - 0x7fff9022afff com.apple.Accelerate (1.10 - Accelerate 1.10) <2C8AF258-4F11-3BEC-A826-22D7199B3975> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff9022b000 - 0x7fff9024fff7 com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff90250000 - 0x7fff9026aff7 com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff902ac000 - 0x7fff902b2ff7 com.apple.XPCService (2.0 - 1) /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
0x7fff9032e000 - 0x7fff90333fff com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff9036a000 - 0x7fff90454ff7 com.apple.QuickLookUIFramework (5.0 - 675.43) <011DEB49-0FB3-3E44-9D99-D89ADD59A3CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff904ed000 - 0x7fff90500ff7 com.apple.CoreBluetooth (1.0 - 1) <8D7BA9BA-EB36-307A-9119-0B3D9732C953> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff90501000 - 0x7fff90504ff7 libdyld.dylib (353.2.3) /usr/lib/system/libdyld.dylib
0x7fff9079d000 - 0x7fff90cc6ff7 com.apple.QuartzComposer (5.1 - 332.1) <64399385-0768-3590-B4EF-1BD0F8A35CB3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff90cc7000 - 0x7fff90ccfff7 com.apple.AppleSRP (5.0 - 1) <68F0C577-ED96-34F2-B701-CE3023367D4D> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff90cd0000 - 0x7fff90e16fef libsqlite3.dylib (168.2) <53F6A294-15D7-3804-9ABF-47D35E15CDFB> /usr/lib/libsqlite3.dylib
0x7fff90e17000 - 0x7fff90efbfff libcrypto.0.9.8.dylib (52.40.1) /usr/lib/libcrypto.0.9.8.dylib
0x7fff90efc000 - 0x7fff90f9be27 com.apple.AppleJPEG (1.0 - 1) <6627DDD9-A8FE-3968-B23A-B6A29AA3919A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff90f9c000 - 0x7fff90f9dfff libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
0x7fff91055000 - 0x7fff9123aff7 libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib
0x7fff9123b000 - 0x7fff91240fff libsystem_stats.dylib (163.30.2) /usr/lib/system/libsystem_stats.dylib
0x7fff912a7000 - 0x7fff912abfff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff912ac000 - 0x7fff912d0ff7 com.apple.Sharing (328.17 - 328.17) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff912ed000 - 0x7fff912edfff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <9D749502-A228-3BF1-B52F-A182DEEB2C4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff912ee000 - 0x7fff912f7ff3 com.apple.CommonAuth (4.0 - 2.0) <9A484EE6-0003-3AB1-AE4F-AA543BBBF53F> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff912f8000 - 0x7fff91323ff7 com.apple.DictionaryServices (1.2 - 229.1) <62EC3E1B-5A28-3252-90FF-C2E9999C2A2A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff91324000 - 0x7fff913b2ff7 com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff913b3000 - 0x7fff914d7ff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff914f0000 - 0x7fff9151afff GLRendererFloat (11.1.2) <50EC0CD3-5CAB-3183-9818-FC4A405B681F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff9151b000 - 0x7fff91561ff7 libFontRegistry.dylib (134.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff91562000 - 0x7fff91564ff7 com.apple.securityhi (9.0 - 55006) <2B9C0BCB-7D82-39C2-A99F-7B9E1522CDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff91565000 - 0x7fff91567fff com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff91568000 - 0x7fff91568ff7 libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
0x7fff91569000 - 0x7fff91587ff7 com.apple.addressbook.vCard (9.0 - 1579) /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff91588000 - 0x7fff915a8fff com.apple.IconServices (47.1 - 47.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff915a9000 - 0x7fff915f7ff7 com.apple.ImageCaptureCore (6.3 - 6.3) <75B5043C-9EF0-3CD2-875D-12813F0A73D3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff915f8000 - 0x7fff9173cff7 com.apple.QTKit (7.7.3 - 2890.7) <267DFB98-4959-3EDE-B76B-8B2F12F41A17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff917f6000 - 0x7fff91a74fff com.apple.RawCamera.bundle (6.05 - 806) <21725AF6-40DA-3753-8556-114692B675E0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff91a75000 - 0x7fff91a76ff7 libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
0x7fff91a77000 - 0x7fff91a79fff libsystem_configuration.dylib (699.40.2) <56F94DCE-DBDE-3615-8F07-DE6270D9F8BE> /usr/lib/system/libsystem_configuration.dylib
0x7fff91a85000 - 0x7fff91a94fd3 com.apple.AppleFSCompression (68.30.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff91a95000 - 0x7fff91b87ff7 libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
0x7fff91b88000 - 0x7fff91c14fe7 libsystem_c.dylib (1044.40.1) /usr/lib/system/libsystem_c.dylib
0x7fff91c15000 - 0x7fff91d05fef libJP2.dylib (1239) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff91d06000 - 0x7fff91dc1ff7 com.apple.DiscRecording (9.0 - 9000.4.2) <4655B4B8-523D-3AE6-92A0-8486A2258B3B> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff91dc2000 - 0x7fff91de3fff com.apple.framework.Apple80211 (10.3 - 1030.71.6) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff91de4000 - 0x7fff91defff7 libkxld.dylib (2782.40.9) <2ADAE067-78A0-371E-A5A8-1E7C892D193C> /usr/lib/system/libkxld.dylib
0x7fff91df0000 - 0x7fff91df0fff com.apple.audio.units.AudioUnit (1.12 - 1.12) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff91df1000 - 0x7fff91eb1ff7 com.apple.backup.framework (1.6.5 - 1.6.5) <86396038-33EA-3046-9F70-093A3D6407D4> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff91eb2000 - 0x7fff91ebaffb libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
0x7fff91ebb000 - 0x7fff91ebbfff com.apple.quartzframework (1.5 - 1.5) <26C982A3-2FC3-3F50-B5F4-3C545C3BAC10> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff91ebc000 - 0x7fff91ed5ff3 com.apple.openscripting (1.6.4 - 162.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff91f0e000 - 0x7fff91f14fff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
0x7fff91f5c000 - 0x7fff91f5dff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff91f5e000 - 0x7fff91f7bffb libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
0x7fff91f7c000 - 0x7fff91ffdff7 com.apple.CoreUtils (1.1 - 110.1) <3808CBC5-1DF1-3821-8AAE-57C30D4F514B> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff91ffe000 - 0x7fff92331ff7 libmecabra.dylib (666.7) <0ED8AE5E-7A5B-34A6-A2EE-2B852E60E1E2> /usr/lib/libmecabra.dylib
0x7fff92333000 - 0x7fff923a4ffb com.apple.ApplicationServices.ATS (360 - 375.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff923a5000 - 0x7fff923d4fff com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff923d5000 - 0x7fff924fdff7 com.apple.coreui (2.1 - 308.6) <9E0E9C6A-68F5-34C1-A17C-96226D401D4D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff924fe000 - 0x7fff9251afff com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff9251b000 - 0x7fff9256ffff libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
0x7fff92587000 - 0x7fff9258aff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff9258b000 - 0x7fff925bcff7 com.apple.ProtectedCloudStorage (1.0 - 1) <9D76F2E0-C28A-3DBC-A91F-E87888D46BF0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff925bd000 - 0x7fff925bfff3 com.apple.SafariServices.framework (10601 - 10601.3.9) /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff925c9000 - 0x7fff925cdfff libspindump.dylib (182.4) <929670EB-4963-3496-AD24-8B50E388803C> /usr/lib/libspindump.dylib
0x7fff925ce000 - 0x7fff925d9fff com.apple.AppSandbox (4.0 - 238.20.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
0x7fff925da000 - 0x7fff925defff com.apple.CommonPanels (1.2.6 - 96) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff925e4000 - 0x7fff925e7fff com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff925e8000 - 0x7fff92635ff7 com.apple.print.framework.PrintCore (10.3 - 451.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff92655000 - 0x7fff92656ff7 com.apple.AddressBook.ContactsData (9.0 - 1579) /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
0x7fff92685000 - 0x7fff92689fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff9268a000 - 0x7fff926bcff3 com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 22
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 9706
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=340.0M resident=232.7M(68%) swapped_out_or_unallocated=107.3M(32%)
Writable regions: Total=264.2M written=95.1M(36%) resident=136.6M(52%) swapped_out=4K(0%) unallocated=127.6M(48%)

REGION TYPE VIRTUAL
=========== =======
Activity Tracing 2048K
CG backing stores 23.9M
CG image 796K
CG shared images 400K
CoreAnimation 40.7M
CoreImage 16K
CoreUI image data 588K
Dispatch continuations 16.0M
Foundation 4K
IOKit 28K
Image IO 4K
Kernel Alloc Once 8K
MALLOC 131.1M
MALLOC (admin) 32K
Memory Tag 242 12K
Memory Tag 251 8K
OpenCL 52K
STACK GUARD 56.0M
Stack 12.1M
Stack (reserved) 520K reserved VM address space (unallocated)
VM_ALLOCATE 33.5M
__DATA 28.0M
__GLSLBUILTINS 2588K
__IMAGE 528K
__LINKEDIT 77.7M
__TEXT 262.3M
__UNICODE 552K
mapped file 101.6M
shared memory 4K
=========== =======
TOTAL 790.9M
TOTAL, minus reserved VM space 790.4M

Model: MacBookPro11,5, BootROM MBP114.0172.B04, 4 processors, Intel Core i7, 2.5 GHz, 16 GB, SMC 2.30f2
Graphics: AMD Radeon R9 M370X, AMD Radeon R9 M370X, PCIe, 2048 MB
Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x802C, 0x31364B544631473634485A2D314736453120
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x152), Broadcom BCM43xx 1.0 (7.15.166.24.3)
Bluetooth: Version 4.3.6f3 16238, 3 services, 27 devices, 1 incoming serial ports
Network Service: Thunderbolt Ethernet, Ethernet, en4
Network Service: Thunderbolt Ethernet Slot 2, Ethernet, en5
Network Service: Wi-Fi, AirPort, en0
PCI Card: pci1b21,612, AHCI Controller, Thunderbolt@195,0,0
Serial ATA Device: APPLE SSD SM0512G, 500.28 GB
Serial ATA Device: HGST HTS721010A9E630, 1 TB
USB Device: Internal Memory Card Reader
USB Device: Bluetooth USB Host Controller
USB Device: Apple Internal Keyboard / Trackpad
Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1
Thunderbolt Device: G-DRIVE mobile with Thunderbolt, G-Technology, 3, 7.8
`

No exit condition on alignment

During a stack of M42 the alignment hung on the 8th image out of 10. I don't know what stage it was stuck on but there must be a loop without a sufficient exit condition. Need to investigate.

Memory issue on Windows

With images bigger than a certain size (about 4000x2000), allocation of the workingImage fails consistently, at least on my machine. It works on my MacBook. Need to look into whether we're implementing something wrong, or whether it is simply my system that was misbehaving.

Stacking menu redesign

Stacking parameters menu feels clunky, and will probably need a tabbed layout eventually, especially if OpenSkyStacker ever offers different settings for different frame types. Needs to be redesigned.

Apply calibration frames directly to the Bayer matrix

A tidbit I noticed about DeepSkyStacker is that the calibration frames are applied directly to the RAW picture before interpolation. This likely makes a big difference to the final result because the corrections will be more accurate, so it is worth considering.

I am not sure how straightforward it will be, though, because LibRaw's interpolation works much better than, say, OpenCV's, and I'm not sure whether it will let us manipulate the RAW data and subsequently perform the interpolation as if it were straight from the camera.

Slow RAW processing

A typical call to processConcurrent() on a single light frame:

Function Duration (ms) Percentage of total
getCalibratedImage() 1548 73.9%
generateAlignedImage() 524 25%
add to working image 24 1.1%

Reading the image, applying the calibration frames, debayering, white balance, etc. is taking 75% of the processing time. Three times longer than alignment!

Within the call to getCalibratedImage(), the times look like this:

Function Duration (ms) Percentage of total
Setup, open file, unpack 93 6.1%
Calibration 18 1.2%
dcraw_process() 1326 86.4%
dcraw_make_mem_image() 42 2.7%
cv::Mat cloning, bit depth conversion 56 3.6%

Nearly all of the time is spent in dcraw_process(), which does the debayering, white balance, gamma, and whatever other processing it needs to do to get the image to its presentable form. So all in all, nearly 64% of the processing time is spent just converting the image from raw to bitmap. That's unacceptable.

Since this all resides within an external library, the chances of trying to improve it directly are slim to none. The best thing to do would probably be to find another way to read and process the image. I've made attempts to debayer and white balance with OpenCV (since we're using it already for everything else) but it never seems to turn out quite right.

If another library is used, an essential feature it will need to have is the ability to mess with the Bayer image before processing is done, since that's where we apply the calibration frames. Libraw graciously lets us manipulate the Bayer image directly and then do the processing on the modified version.

Cannot build on ArchLinux

Hey there. I cannot build OpenSkyStacker on ArchLinux (endeavouros). As given in the wiki, I've installed all dependencies from AUR. But, when I run qmake && make && make install, it gives me:

[n3rdium@n3rdium-ms7d22 OpenSkyStacker-Src]$ qmake && make && make install
cd libstacker/ && ( test -e Makefile || /usr/bin/qmake -o Makefile /home/n3rdium/OpenSkyStacker-Src/libstacker/libstacker.pro ) && make -f Makefile 
Project ERROR: opencv development package not found
make: *** [Makefile:50: sub-libstacker-make_first-ordered] Error 3

Convert HFTI and H12 Fortran subroutines into C++

Having Fortran subroutines necessitates either providing precompiled object files or making Fortran compilation part of the build process. Neither is particularly ideal, so the best thing would be to eliminate the Fortran altogether.

Utilize multiple cores

There is a great opportunity for improved efficiency if the processing is multithreaded. Currently there is only the GUI thread and the worker thread.

Options menu

Need a config/options page to allow customization. In particular, allowing to change the star detection threshold is a high priority.

Lightroom cannot open the file

You did a great job with this open source sky stacker! Finally, a tool that works on Mac and does not require to use Wine. I will be happy to help with the translation and documentation.

Issue

On MacOS Sierra (version 10.12.6) The TIFF file cannot be imported in Ligthroom CC (2015.10, Camera RAW 9.10). Only Photoshop CC can open it properly.

The issue from Lightroom is because of the color mode used.
capture d ecran 2018-05-26 a 18 34 32

Request

  1. Is the format of the TIFF file incorrect, or Ligthroom that does not support 32 bits?
  2. Can we have an option to have the 16bits TIFF?

Context

After a stacking the TIFF file generated is not compatible with Lightroom and cannot be opened or imported. It seems that Lightroom cannot open 32bits TIFF.

Even the preview on Mac looks wrong.
Mac Preview: capture d ecran 2018-05-26 a 18 27 35

Only Photoshop CC can open it properly.

Opencv4

Compile problem with opencv4 :
src/imagestacker.cpp:365:50: error: ‘CV_BGR2RGB’ was not declared in this scope; did you mean ‘CV_RGB’? 365 | cv::cvtColor(workingImage, workingImage, CV_BGR2RGB);
how to solve?

Creation of a Slack

Hello,

Do you think a Slack channel can help to collaborate on your script?
When compiling the mac version, I had few questions on the mac-deploy.sh and create-dmg.sh.

This discussion could be easily be done on a Slack to avoid spamming you with "Issues".
What do you think?

Add logger

Considering using spdlog and rotating the log between two 1MB log files.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.