Counting number of people by image capturing

Hi!
i am an university student, recently i have received a image processing research project. my tutor ask me to count number of people by capturing the image. It is a huge task for me. Because human contour variation is huge, and difficult to have standard shape. i still have no idea in this field. Does anybody has ideas or resources for this??
Pls help!!!
Thanx alot

Hi iamcoconut,
You can use the pattern matching functions in IMAQ Vision to search for complex images, such as a set of eyes, etc. However, if you are going to have images of people from different angles, the best method to find the people is to use a Static Background type analysis. This analysis takes an image of the background without people in it and then acquires an image of the same background with people in it. Performing a simple subtract and then separating the images, removing particles, etc. isolates your people so that they may be "counted."
Matthew Smith
Applications Engineering
National Instruments

Similar Messages

  • URGENT HELP NEEDED: counting number of particles from image

    this image on the left is showing particles
    hello i want to create a small VI that can count number of particles from a image that i load up. please see the attached image of particles and the VI printshot.
    I have used the tutorial "counting number of particles" but still the above VI does not work. it shows the number of particles = 1.. I do not know why it is doing so??
    I am not an expert in Labview so please can someone tell me where the problem is. sorry i could not attach the VI file itself but i have given an image of it..
    after anyone has solved this problem, i have to create a live system that will get live images from the camera - four frames every sec and the above VI has to count the
    number of particles for each frame and output to the user?? is this possible can anyone do it for me???
    p.s. in the above VI i read the image from file and count the number of particles. i do not do it to the binary image becuase the binary image is only a black screen
    when i run it
    thankyou

    Hi Farhan,
    Vision Assistant would be the best option to create some steps which you can then export to LabVIEW. You should try using the IMAQ Find Circles.vi. The attached image helps you find the number of circles of an image acquired from a camera. I have used the IMAQdx VIs in this example.
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies
    Attachments:
    vision.vi ‏59 KB

  • How to count number of vehicles using image processing tools in LabVIEW

    anyone can give me idea that how to do counting of vehicles using image processing tools

    Hello,
    if camera is stationary, first take an image of the background. Then subtract each acquired image from the reference image. Limit the region of interest - build a mask of the area, where you want to detect vehicles. Use only the pixels that are under the mask for further processing. You probably would need to do some morphological operations (for example dilate) to make the detection more noise-free...
    Maybe you could get more reference images (different time of day) and compare the average intensities of the acquired and the reference image to select the best image for subtraction.
    You could then probably just count the numer of objects to get the number of vehicles.
    You can perhaps also use optical flow to track the vehicles, but you would need to compute some features for example strong corners for each vehicle (check good features to track, http://docs.opencv.org/modules/imgproc/doc/feature_detection.html). Or you can use the new mean-shift tracking library (Labview 2013).
    Hope this helps a bit.
    Best regards,
    K
    https://decibel.ni.com/content/blogs/kl3m3n
    "Kudos: Users may give one another Kudos on the forums for posts that they found particularly helpful or insightful."

  • Because I have taken over 9,999  pics, my phone is now duplicating image numbers. The problem is when I am importing with Image Capture, when I select images, the program is importing BOTH the old images of the same number as well as the new ones. Help?

    Because I have taken over 9,999 images, my phone is now duplicating image numbers. The problem is that Image Capture now imports BOTH images when I select the new ones that share numbers with old ones.  The images were completely mixed when they showed up in Image Capture - Old image 0001, new image 0001, old image 0002, new image 0002 and so forth. I clicked on "date," which then rearraged the images, and I selected only the new ones, but when they actually import to my computer BOTH old and new images are importing. Has anyone figured out how to solve this problem?

    Well, obviously all I needed to do  to solve the problem was to post about it. It has stopped, so all is well!

  • I see people from different ages at my work and every month I need to count how many people from each age I've seen that month. How can I do to give the entries to numbers in a single cell and make numbers count them for me?

    I see people from different ages at my work and every month I need to count how many people from each age I've seen that month. How can I do to give the entries to numbers in a single cell and make numbers count them for me? The final result would be a spreadsheet telling there were 8 people from 20 to 39 years old, 14 peolple from 40 to 59 and so on...

    jpqcampos wrote:
    This appears to be an 'input form' using 'Radio Buttons' to select the category. Neither of these features are supported in Numbers '09.
    You can input the data on one table and summarize it on a second table, but the input table will continue to hold data for each event.
    And by using the Reorganize button, you can hide all but two rows of that table to approximate the appearance and performance of an input form.
    Here are the two tables, Data on the left and Summary on the right. Notes below.
    The grey-filled columns in both tables are 'working' columns, and may be hidden (as shown in the image below).
    Data table:
    D1 contains the word "TRUE" (in capital letters). (This row is always shown.)
    D2 is empty, or may contain any value except "TRUE" (This row is always hidden under the Reorganize rule.)The rest of Row 2 of this table requires the data shown: a number outside the range to be counted (999), and two checkboxes, both checked.
    D3 (and filled down the rest of column D):   =AND(OR(B2,C2),NOT(OR(B3,C3)))
    The formula returns TRUE only for the first unused row in the table (ie. the first row for which neither checkbox has been checked)
    Summary table:
    Column A contains labels for the age ranges to be counted.
    Column B contains the same information in the form necessary for the formulas in columns C and D. They need a numeric value, and that value must be the largest acceptable value in the range to be counted.
    C2 (and filled right to column D, then both filled down to row 5):
        =COUNTIFS(Data :: $A,"<="&$B,Data :: B,TRUE)-SUM(C$1:C1)
    Two changes from the previous example:
    COUNTIFS is used to separate the Native and Foreign counts as well as the age range to be counted.
    The amount subtracted from each result is the SUM of the earlier results, and includes the text value in the first cell of the column (which is interpreted by SUM as a zero).
    See note below regarding my earlier formula.
    When the greyed columns are hidden and the checkbox in the Reorganize pane is checked, the two tables will appear as shown below:
    Close the reorganize pane, and the 'data entry form' is ready to use.
    To use, enter the age first, then check one of the boxes.
    As soon as one box is checked, the row will be hidden, and the next (unused) row will be shown.
    Regards,
    Barry
    Note regarding formula in my earlier post:
    The earlier formula will give erroneous results as it subtracts only the count directly above it from its count of persons in the age range 0-n.
    In E2 of that table, replace "-E1" with "-SUM(E1:E$1)
    Fill down to E8.
    Ignore the instructions (in that post) following "Fill down to E8."
    B

  • Image Capture Extension running wild

    Hi!
    I have a year old MacBook Pro, and I'm for the first time experiencing trouble. Whenever i connect my iPhone or other camera device, Image Capture Extension runs out of control. It starts out slow, but when I view the process in Activity Monitor after some seconds, I can read that it uses about 1.4 GB of RAM. This causes the computer not to respond to anything, and I have to shut it of manually by pressing the power-button.
    What can i do to prevent this? It's really frustrating, because I have to kill the process whenever i want to connect my iPhone to the Mac.
    Here's a sample from the Activity Monitor, of Image Capture Extension:
    Sampling process 97189 for 3 seconds with 1 millisecond of run time between samples
    Sampling completed, processing symbols...
    Analysis of sampling Image Capture Extension (pid 97189) every 1 millisecond
    Process: Image Capture Extension [97189]
    Path: /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension
    Load Address: 0x100000000
    Identifier: com.apple.ImageCaptureExtension2
    Version: 6.0.1 (6.0.1)
    Build Info: ImageCaptureDevices-6520107~2
    Code Type: X86-64 (Native)
    Parent Process: launchd [178]
    Date/Time: 2010-11-14 16:11:05.590 +0100
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Call graph:
    1432 Thread_1781904 DispatchQueue_1: com.apple.main-thread (serial)
    1432 start
    1432 NSApplicationMain
    1432 -[NSApplication run]
    1432 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
    1432 _DPSNextEvent
    1432 AEProcessAppleEvent
    1432 aeProcessAppleEvent
    1432 dispatchEventAndSendReply(AEDesc const*, AEDesc*)
    1432 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*)
    1432 _NSAppleEventManagerGenericHandler
    1432 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:]
    1432 -[AppController handleAppleEvent:withReplyEvent:]
    1432 -[ICABaseCommand doProcess]
    1432 -[ICDDeviceRegisteredImp process]
    1432 -[AppController getSharingPreferences]
    1432 ICADeviceBrowserDictionary
    1432 -[ICADeviceBrowser gatherDeviceBrowserDevices]
    1432 -[DeviceListObject autoConnectDevicesForDeviceBrowser]
    1432 -[DeviceObject dictionaryForDeviceBrowser:]
    1432 -[ICADeviceDatabase getDeviceDictionaries:matchingCriteria:]
    1432 _SQLiteExecuteSQLAndFetchResult
    1323 _SQLiteCreateError
    563 +[NSDictionary dictionaryWithObject:forKey:]
    554 -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]
    496 CFDictionaryCreate
    468 __CFBasicHashRehash
    442 __CFBasicHashRehash
    24 malloczonemalloc
    16 szonemalloc_shouldclear
    10 tinymalloc_from_freelist
    5 szonemalloc_shouldclear
    1 allocate_pages
    1 __mmap
    6 _spinlock
    1 malloczonemalloc
    1 szone_malloc
    1 CFAllocatorAllocate
    1 CFGetAllocator
    17 CFBasicHashAddValue
    8 __CFBasicHashAddValue
    6 __CFBasicHashAddValue
    1 CFBasicHashGetCapacity
    1 _CFRetain
    8 _CFBasicHashFindBucket1
    4 _CFBasicHashFindBucket1
    3 __CFStringHash
    1 CFHash
    1 CFBasicHashAddValue
    9 CFBasicHashCreate
    5 _CFRuntimeCreateInstance
    3 _CFRuntimeCreateInstance
    2 __bzero
    2 CFBasicHashGetTypeID
    1 CFBasicHashCreate
    1 objcassignstrongCast
    1 CFDictionaryCreate
    1 _CFRuntimeSetInstanceTypeID
    43 -[NSCFString copyWithZone:]
    41 -[NSCFString copyWithZone:]
    2 CFStringCreateCopy
    1 CFStringCreateCopy
    1 _CFRetain
    7 -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]
    3 objc_msgSend
    2 __bzero
    1 __CFDictionaryCreateGeneric
    1 memset
    1 objcmsgSendvtable14
    3 +[NSDictionary dictionaryWithObject:forKey:]
    3 -[NSObject(NSObject) autorelease]
    3 _CFAutoreleasePoolAddObject
    2 objc_collectingEnabled
    1 _CFAutoreleasePoolAddObject
    1 +[NSDictionary allocWithZone:]
    1 objc_msgSend
    1 objc_msgSend
    1 objcmsgSendvtable1
    552 +[NSString stringWithFormat:]
    409 -[NSPlaceholderString initWithFormat:locale:arguments:]
    408 _CFStringCreateWithFormatAndArgumentsAux
    363 CFStringCreateMutable
    361 _CFRuntimeCreateInstance
    337 __bzero
    23 malloczonemalloc
    23 szonemalloc_shouldclear
    19 szonemalloc_shouldclear
    2 tinymalloc_from_freelist
    1 _cpunumber
    1 allocate_pages
    1 __mmap
    1 CFAllocatorAllocate
    2 CFStringCreateMutable
    33 _CFStringAppendFormatAndArgumentsAux
    30 _CFStringAppendFormatAndArgumentsAux
    2 CFStringGetLength
    1 __bzero
    7 _CFRelease
    5 szone_free
    1 CFAllocatorDeallocate
    1 OSAtomicCompareAndSwap32
    3 CFStringCreateCopy
    2 __CFStringCreateImmutableFunnel3
    2 CFRetain
    1 CFRetain
    1 _CFStringCreateWithFormatAndArgumentsAux
    1 dyldstub_objectgetClass
    1 -[NSPlaceholderString initWithFormat:locale:arguments:]
    143 -[NSObject(NSObject) autorelease]
    141 _CFAutoreleasePoolAddObject
    131 calloc
    131 malloczonecalloc
    131 szonemalloc_shouldclear
    129 __bzero
    1 smallmalloc_from_freelist
    1 szonemalloc_shouldclear
    10 pthread_setspecific
    1 dyldstub_objccollectingEnabled
    1 dyldstub_pthreadgetspecific
    200 +[NSObject(NSObject) allocWithZone:]
    195 internal_classcreateInstanceFromZone
    193 calloc
    190 malloczonecalloc
    188 szonemalloc_shouldclear
    182 __bzero
    3 szonemalloc_shouldclear
    3 tinymalloc_from_freelist
    1 _spinlock
    1 malloczonecalloc
    3 calloc
    2 object_cxxConstructFromClass
    1 classhasCxxStructorsNoSuper
    1 object_cxxConstructFromClass
    2 +[NSObject(NSObject) allocWithZone:]
    2 objc_collectingEnabled
    1 class_createInstance
    2 _SQLiteCreateError
    2 objc_msgSend
    2 sqlite3_errmsg
    2 sqlite3ValueText
    1 +[NSObject(NSObject) alloc]
    1 objcmsgSendvtable1
    76 -[NSError initWithDomain:code:userInfo:]
    41 -[NSCFDictionary copyWithZone:]
    40 _CFDictionaryIsMutable
    1 -[NSCFDictionary copyWithZone:]
    31 -[NSCFString copyWithZone:]
    31 CFStringCreateCopy
    30 CFStringCreateCopy
    1 _CFRetain
    2 objc_msgSend
    2 objc_msgSendSuper2
    26 dyldstub_objcmsgSend
    3 _SQLiteExecuteSQLAndFetchResult
    2 sqlite3_step
    1 -[NSObject(NSObject) copy]
    1 dyldstub_objcmsgSendSuper2
    1432 Thread_1781906 DispatchQueue_2: com.apple.libdispatch-manager (serial)
    1432 start_wqthread
    1432 pthreadwqthread
    1432 dispatch_workerthread2
    1432 dispatch_queueinvoke
    1432 dispatch_mgrinvoke
    1432 kevent
    1167 Thread_1782671
    1167 start_wqthread
    1167 pthreadwqthread
    1167 _workqkernreturn
    Total number in stack (recursive counted multiple, when >=5):
    6 __bzero
    5 objc_msgSend
    Sort by top of stack, same collapsed (when >= 5):
    kevent 1432
    _workqkernreturn 1167
    __bzero 653
    __CFBasicHashRehash 442
    -[NSCFString copyWithZone:] 41
    _CFDictionaryIsMutable 40
    CFStringCreateCopy 31
    _CFStringAppendFormatAndArgumentsAux 30
    szonemalloc_shouldclear 28
    dyldstub_objcmsgSend 26
    tinymalloc_from_freelist 15
    pthread_setspecific 10
    objc_msgSend 9
    -[__NSPlaceholderDictionary initWithObjects:forKeys:count:] 7
    _spinlock 7
    __CFBasicHashAddValue 6
    szone_free 5
    Binary Images:
    0x100000000 - 0x100054fff com.apple.ImageCaptureExtension2 6.0.1 (6.0.1) <F6A078F7-3EEA-B4DD-0F82-CE38C35BF2B2> /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension
    0x10008f000 - 0x100094ff7 com.apple.iPod 1.6 (17) <5414371D-AF55-7FB1-AAFD-A0ED7D2C2DC3> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B536F2F1-9DF1-3B6C-1C2C-9075EA219A06> /usr/lib/dyld
    0x7fff80105000 - 0x7fff801bafe7 com.apple.ColorSync 4.6.3 (4.6.3) <AA93AD96-6974-9104-BF55-AF7A813C8A1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff801bb000 - 0x7fff80200fff com.apple.CoreMediaIOServices 130.0 (1035) <567D7949-3115-4E78-8F27-B28968CC25F7> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff80201000 - 0x7fff8025fff7 com.apple.framework.IOKit 2.0 (???) <010C3398-7363-8F4B-719C-263867F15F63> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff803cf000 - 0x7fff803deff7 com.apple.opengl 1.6.9 (1.6.9) <BB8AEF81-0EC1-ED4C-360B-186C60AE745C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff803df000 - 0x7fff80464fff com.apple.print.framework.PrintCore 6.2 (312.5) <E736F6DC-2E69-A14D-6BCF-69D14232F8B8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff80531000 - 0x7fff80537ff7 IOSurface ??? (???) <EB2019F6-7C5C-3D59-E11F-6119466C12A9> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff805b5000 - 0x7fff805c4fff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff806be000 - 0x7fff806d4fe7 com.apple.MultitouchSupport.framework 205.34 (205.34) <01AAE66D-C2DF-4EF5-FC7B-E89E08C02A01> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff807e0000 - 0x7fff811d6fff com.apple.AppKit 6.6.6 (1038.29) <7BDD335D-5425-0354-5AD6-41C4F1B4A2F4> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff811d7000 - 0x7fff8121eff7 com.apple.coreui 2 (114) <D7645B59-0431-6283-7322-957D944DAB21> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff81489000 - 0x7fff8156ffe7 com.apple.DesktopServices 1.5.7 (1.5.7) <8A697128-B6CA-E4A8-C200-6520D5A35FBE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff81570000 - 0x7fff81a74fe7 com.apple.VideoToolbox 0.484.11 (484.11) <4577FF14-E6A7-AAD8-E6E6-ECA9CFCC6989> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff81a75000 - 0x7fff81b8efef libGLProgrammability.dylib ??? (???) <0E55A58B-5B42-669F-2655-90893554CA21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff81ccb000 - 0x7fff81d84fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff81d85000 - 0x7fff81e25fff com.apple.LaunchServices 362.1 (362.1) <2740103A-6C71-D99F-8C6F-FA264546AD8F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff81ef1000 - 0x7fff82000fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <36DA89A6-3AF5-86F2-BDD5-B94C7C0844D4> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff82001000 - 0x7fff82003fff libRadiance.dylib ??? (???) <D67C08B6-4D4A-916D-E936-528E145A56E2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff82004000 - 0x7fff82055fe7 com.apple.HIServices 1.8.0 (???) <1ABA7802-C1E4-06A0-9035-2792CC915BF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff82086000 - 0x7fff8208aff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff820ce000 - 0x7fff8228efef libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    0x7fff8229b000 - 0x7fff822a6ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff8238a000 - 0x7fff824b2ff7 com.apple.MediaToolbox 0.484.11 (484.11) <F50B5552-8527-C75D-873F-66A61D04E32A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff824c2000 - 0x7fff824e0fff libPng.dylib ??? (???) <F6932C8D-E6B1-0871-B698-15180AA948F7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff824e1000 - 0x7fff824e7ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff826af000 - 0x7fff826cfff7 com.apple.DirectoryService.Framework 3.6 (621.3) <EDCAF7ED-36E1-121F-D294-5CEBC1C34C5A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff8272f000 - 0x7fff829b6fe7 com.apple.security 6.1.1 (37594) <C32E7E37-13EC-381A-7CA6-AAE3EBD2C1F1> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff829b7000 - 0x7fff829c9fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff82a51000 - 0x7fff82bc6ff7 com.apple.CoreFoundation 6.6.3 (550.29) <48810602-63C3-994D-E563-DD02B16E76E1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff82bc7000 - 0x7fff82e48fef com.apple.Foundation 6.6.3 (751.29) <DAEDB589-9F59-9556-CF8D-07556317937B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff82e49000 - 0x7fff82e91ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8308f000 - 0x7fff830d9ff7 com.apple.Metadata 10.6.3 (507.10) <641395B7-FF2C-B94C-965A-CE6A0830645F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff830da000 - 0x7fff83189fff edu.mit.Kerberos 6.5.10 (6.5.10) <F3F76EDF-5660-78F0-FE6E-33B6174F55A4> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8318a000 - 0x7fff83523ff7 com.apple.QuartzCore 1.6.2 (227.22) <76EE0A32-B20B-F316-ADDD-4230329253D5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff83685000 - 0x7fff836a6fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <6993F348-428F-C97E-7A84-7BD2EDC46A62> /usr/lib/libresolv.9.dylib
    0x7fff836a7000 - 0x7fff836cffff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff8378c000 - 0x7fff837a1ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff837a2000 - 0x7fff837bdff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff837d1000 - 0x7fff83940fe7 com.apple.QTKit 7.6.6 (1742) <7E254184-757D-E87C-5B2A-7612A2C85243> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff83941000 - 0x7fff8396cff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff8396d000 - 0x7fff839aeff7 com.apple.CoreMedia 0.484.11 (484.11) <AEE7E9C9-9604-B0A7-053B-28954659CFE3> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff839af000 - 0x7fff83a1dfff com.apple.AppleVAFramework 4.9.20 (4.9.20) <78727165-8D44-0354-6F6C-68FD798E04A1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff83ab3000 - 0x7fff83ac7ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff83b60000 - 0x7fff83ba9fef libGLU.dylib ??? (???) <88F0E457-EE53-B5FF-6A1B-D0326D0C643D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff83baa000 - 0x7fff83bacfff com.apple.print.framework.Print 6.1 (237.1) <4513DB2F-737C-B43C-2D0E-23CD6E838014> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff83c0e000 - 0x7fff83c5afff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff83c5b000 - 0x7fff83d72fef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff83d8e000 - 0x7fff83d91ff7 libCoreVMClient.dylib ??? (???) <CE19A78F-B76D-244A-1C04-0544B914F728> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff83d92000 - 0x7fff83db8fe7 libJPEG.dylib ??? (???) <4060F3E2-BAD3-244F-D777-51BA16569DA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff83db9000 - 0x7fff83e76ff7 com.apple.CoreServices.OSServices 357 (357) <718F0719-DC9F-E392-7C64-9D7DFE3D02E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff83e7e000 - 0x7fff84034fef com.apple.ImageIO.framework 3.0.3 (3.0.3) <A32D0B5A-7149-7739-22D3-84D38B07E9E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff84059000 - 0x7fff840d6fef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff840d7000 - 0x7fff840dcff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff840dd000 - 0x7fff84115fef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <31A78904-A500-0DA9-0609-F1EB81383326> /usr/lib/libcups.2.dylib
    0x7fff841a6000 - 0x7fff844a4fe7 com.apple.HIToolbox 1.6.3 (???) <CF0C8524-FA82-3908-ACD0-A9176C704AED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff844a5000 - 0x7fff844b6ff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717> /usr/lib/libz.1.dylib
    0x7fff84500000 - 0x7fff8454ffef libTIFF.dylib ??? (???) <A66CBA9C-A38D-5EDB-BFB5-CB398F033D6F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff84550000 - 0x7fff84551ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <D4183AC4-8A65-8368-A9AF-E2A13D18519C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8458a000 - 0x7fff84624fff com.apple.ApplicationServices.ATS 275.11.1 (???) <0A898C0C-41A0-B9BF-0A38-74FB029CA049> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff84625000 - 0x7fff84626ff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff8464c000 - 0x7fff8464cff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8464d000 - 0x7fff846cbfff com.apple.CoreText 3.1.0 (???) <B740DA1D-EFD0-CCBF-F893-E3004FE58A98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff84767000 - 0x7fff8488cfef com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <4DCCD01F-7516-4240-09DC-EE553317D345> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff848a9000 - 0x7fff84939fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8493a000 - 0x7fff849b9fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <243E456E-7A74-BE76-FF18-E589BDCAA785> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff849ba000 - 0x7fff84af8fff com.apple.CoreData 102.1 (251) <32233D4D-00B7-CE14-C881-6BF19FD05A03> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff84af9000 - 0x7fff84af9ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff84b16000 - 0x7fff84b24ff7 libkxld.dylib ??? (???) <EE840168-1F67-6219-8BA3-C46039BCC8B3> /usr/lib/system/libkxld.dylib
    0x7fff84f0b000 - 0x7fff84f0cfff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff84f0d000 - 0x7fff84f62fef com.apple.framework.familycontrols 2.0.1 (2010) <239940AC-2427-44C6-9E29-998D0ABECDF3> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff84f63000 - 0x7fff85121fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0E53A4A6-AC06-1B61-2285-248F534EE356> /usr/lib/libicucore.A.dylib
    0x7fff85122000 - 0x7fff85122ff7 com.apple.vecLib 3.6 (vecLib 3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff85123000 - 0x7fff85148fe7 com.apple.CoreVideo 1.6.1 (45.4) <B1516554-88BC-CF1E-5409-BFF27A73D1AF> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff85407000 - 0x7fff8541dfff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff854cf000 - 0x7fff85575fef com.apple.Bluetooth 2.3.7 (2.3.7f1) <EC4AB40C-2730-9A64-4F4F-4332C27C914C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff85576000 - 0x7fff8558cfef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff855df000 - 0x7fff856afff7 com.apple.CFNetwork 454.9.8 (454.9.8) <24667A86-FCDA-5B58-2CDC-3BFDFE8EA985> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff856b0000 - 0x7fff856b3fff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff856fc000 - 0x7fff8574bff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff858b6000 - 0x7fff858c3fe7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <7B891D4C-1F19-4DB0-FD12-7A7D5E8F47AE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff85a4c000 - 0x7fff85a6ffff com.apple.opencl 12.1 (12.1) <403E8F37-4348-B9BC-08E6-7693A995B7EC> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff85a70000 - 0x7fff8616d067 com.apple.CoreGraphics 1.545.0 (???) <88892F58-F785-2E30-50B1-E9CC8775E79F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff864af000 - 0x7fff864afff7 com.apple.Carbon 150 (152) <19B37B7B-1594-AD0A-7F14-FA2F85AD7241> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff864b0000 - 0x7fff864c9fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff864fb000 - 0x7fff865b1fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff865dc000 - 0x7fff865e1fff libGIF.dylib ??? (???) <21FC6B02-6AC3-C4DB-0B50-98144802274C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8667a000 - 0x7fff86abdfef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff86abe000 - 0x7fff86b7efff libFontParser.dylib ??? (???) <A4F8189D-1D5B-2F8D-E78E-6D934A8E8407> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff86b7f000 - 0x7fff86b84fff libGFXShared.dylib ??? (???) <1B50D804-966B-30D2-D0FD-B090B6FEAC7E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff86c04000 - 0x7fff86cdeff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff86cdf000 - 0x7fff874e9fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff874ea000 - 0x7fff874eaff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff874f3000 - 0x7fff874f3ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff874f4000 - 0x7fff874f4ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff874f5000 - 0x7fff87530fff com.apple.AE 496.4 (496.4) <CBEDB6A1-FD85-F842-4EB8-CC289FAE0F24> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff87531000 - 0x7fff87545fff libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff87546000 - 0x7fff87879fe7 com.apple.CoreServices.CarbonCore 861.13 (861.13) <BC2F9B4E-D305-D717-D97E-EC78C7DE9EE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8787a000 - 0x7fff87881fff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff87912000 - 0x7fff87953fef com.apple.QD 3.35 (???) <78C9A560-E6F7-DC4F-F85E-E63CF8A98F0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff8797a000 - 0x7fff879bbfff com.apple.SystemConfiguration 1.10.2 (1.10.2) <BC27BDD4-9CC8-9AF0-B4C2-DD50FD751CBF> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff879bc000 - 0x7fff87a26fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff8869b000 - 0x7fff88750fe7 com.apple.ink.framework 1.3.3 (107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff88cc2000 - 0x7fff88cf3fff libGLImage.dylib ??? (???) <7EF50768-54F1-5883-C40F-DAF83810C3FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff88ed8000 - 0x7fff88f64fef SecurityFoundation ??? (???) <6860DE26-0D42-D1E8-CD7C-5B42D78C1E1D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff88f65000 - 0x7fff88f68ff7 com.apple.securityhi 4.0 (36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <95E02DD0-ADEA-745B-E7FA-ABA064E4658C> /usr/lib/libSystem.B.dylib
    Sample analysis of process 97189 written to file /dev/stdout
    Best regards,
    Bjørn

    Found a solution!
    Kappy wrote:
    If the problem only appears with iPhoto then it may be due to a bad pref file >for iPhoto. It could also be caused by a bad cache or log file.
    There are additional ImageCapture preference files located in the /Home/Library/Preferences/ByHost/ folder. Be sure to remove them also. Also remove the /Home/Library/Caches/com.apple.iPhoto/ folder.
    There are two ImageCapture cache files located in the /Library/Caches/ folder. >Drag them to the Trash but do not delete them as yet.
    Now restart the computer and see what happens.
    Original topic:
    http://discussions.apple.com/thread.jspa?threadID=2501601&tstart=-1
    - Bjørn

  • Image Capture Extension consuming all the memory

    I have a Macbook Pro from 2011 with OS X Yosemite, Iphoto 9.6 and Aperture 3.6.  I always work with Aperture for my pictures.  But since last weekend it works extremely slow. When I check the Activity Monitor I see that there is something like "Image Capture Extension" consuming a lot of memory and also Kernel_task.
    When I force quit "Image Capture Extension", Aperture starts up but still extremely slow.  Is this a hardware issue?  Should I reinstall Aperture?
    I think this started after I tried to work in Iphoto again (after long time) to order a photobook before Aperture and Iphoto will close.  I had issues with ordering the photobook (see other discussion of me).

    Here is the report from EtherCheck, I have been able to remove some Adware via AdwareMedic but it seems there is still some there,
    Also the startup items I cannot remove via Accounts.
    For the rest everything looks quite OK, no?
    EtreCheck version: 2.1.8 (121)
    Report generated 11 March 2015 9:00:28 pm AEST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Click the [Adware! - Remove] links for help removing adware.
    Hardware Information: ℹ️
        MacBook Pro (13-inch, Early 2011) (Technical Specifications)
        MacBook Pro - model: MacBookPro8,1
        1 2.3 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 574
    Video Information: ℹ️
        Intel HD Graphics 3000 - VRAM: 384 MB
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:3:29
    Disk Information: ℹ️
        Hitachi HTS545032B9A302 disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 318.84 GB (32.07 GB free)
                Core Storage: disk0s2 319.21 GB Online
        OPTIARC DVD RW AD-5970H 
    USB Information: ℹ️
        Western Digital My Passport 0820 2 TB
            EFI (disk2s1) <not mounted> : 210 MB
            WD 2TB RED (disk2s2) /Volumes/WD 2TB RED : 2.00 TB (1.56 TB free)
        Apple Computer, Inc. IR Receiver
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Adware: ℹ️
        Geneio [Adware! - Remove]
    Kernel Extensions: ℹ️
            /System/Library/Extensions
        [not loaded]    com.nike.sportwatch (1.0.0) [Click for support]
        [not loaded]    net.Thomson.iokit.USBLAN_usbpart (1.6.0) [Click for support]
    Startup Items: ℹ️
        HWNetMgr: Path: /Library/StartupItems/HWNetMgr
        HWPortDetect: Path: /Library/StartupItems/HWPortDetect
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    net.sourceforge.MonolingualHelper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        Unity Web Player: Version: UnityPlayer version 4.6.0f2 - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        googletalkbrowserplugin: Version: 2.0.4.2108 - SDK 10.5 [Click for support]
        npgtpo3dautoplugin: Version: 0.1.43.7 [Click for support]
        Silverlight: Version: 4.0.60310.0 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        GoPro  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 318.84 GB Disk used: 286.77 GB
        Destinations:
            WD Harddrive Ann [Local]
            Total size: 499.94 GB
            Total number of backups: 2
            Oldest backup: 2014-11-30 04:03:53 +0000
            Last backup: 2015-03-03 15:01:32 +0000
            Size of backup disk: Too small
                Backup size 499.94 GB < (Disk used 286.77 GB X 3)
    Top Processes by CPU: ℹ️
             9%    mds
             6%    WindowServer
             4%    mds_stores
             1%    mtmd
             0%    SystemUIServer
    Top Processes by Memory: ℹ️
        159 MB    mds_stores
        69 MB    ocspd
        60 MB    WindowServer
        43 MB    Dock
        30 MB    Finder
    Virtual Memory Information: ℹ️
        1.68 GB    Free RAM
        1.20 GB    Active RAM
        384 MB    Inactive RAM
        1.03 GB    Wired RAM
        948 MB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 11, 2015, 08:55:40 PM    Self test - passed
        Mar 11, 2015, 05:13:17 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iPhoto_2015-03-11-171317_[reda cted].crash

  • How do I get Image Capture to recognize my iPhone so I can transfer videos to my MacBook ?

    I cannot delete my old email from my Apple Discussions Profile.
    I have an iPhone that is not letting me transfer videos I take with the Camera App onto my MacBook Air.
    My photos transfer fine but the videos don't transfer at all.
    I have tried Image Capture too and this does not even recognize my iPhone.
    I have tried different USB cables and still no luck.
    Even though one workaround is emailing videos to myself from my iPhone
    this is not ideal because it compresses the files - thus losing video quality - and
    it is super time-consuming because I have long videos that I need to break up into smaller clips
    in my emails and I have almost 200 videos in all.
    I think I have iPhone 5 but I don't know how to confirm.
    Please advise.
    Many thanks
    <Email Edited By Host>

    In Image Capture, a network printer / scanner will appear under "Shared". If it is hidden, a number will appear adjacent to it, representing the number of hidden devices.
    If it still does not appear, try resetting the printing system: Mac OS X: How to reset the printing system
    After you do that you will need to add the device again according to the instructions here:
    OS X Mavericks: Set up a printer
    Follow the instructions below Add a network printer
    Also read:
    Troubleshooting printer issues in OS X

  • How do I find lost photos after Image Capture failed to import them to iPhoto?

    im having this problem exactly .... http://hints.macworld.com/article.php?story=20101215095521610
    i chose to delete after import, like a wise guy, thinking nothing was going to happen and now my photos are not in my iPhoto libary... ive gone through all my images and i cant find them...
    i used image capture to put all my photos into iphoto from my iphone 4 before i bought my 4S and i didnt back anything up, thinking i was fine...
    when i went to iphoto they werent there, so i tried to quit iphoto and, as i did, it said my library was updating about 300+ photos, so i was like 'oh all i needed to do was restart iphoto'... but it was still a no-go, they still werent there...
    i restarted my computer, looked at other peoples answers, and i just cant find them in any folder or anywhere....... and i cant find the folder from the link i posted... very tired and fustrated. i need help please : (

    I don't think it can be done from within iPhoto but there's a way you can do it from outside. First download and launch QPict. Then do the following;
    1 - open your iPhoto Library folder and type Command-F.
    2 - in the search window create these two search criteria:
    a - Kind is Folder
    b - Name contains Original
    3 - In the search results window click on the size column to separate the empty folders from those with files in them.
    4 - select all of the folder that are not empty and drag into the open window of QPict.
    That will open the original files in QPict so you can view them there and compare to those in iPhoto. Just remember do not move any of those folders out of the iPhoto Library folder. Just move them into the open window of QPict.
    G4 DP-1G, 1G RAM, 22 Display, 2-80G HD, QT 7.0.3P   Mac OS X (10.4.3)   Canon S400, i850 & LIDE 50, Epson R200, 2G Nano

  • Scanjet G4050- How to scan multiple slides at one time with Image Capture

    Using Scanjet G4050 with Mac and OS 10.6.  Thus using Image Capture to control scanner.  When using the slide template for 16 slides, Image Capture only allows me to select one slide at a time. 
    Is there a way to fill the template with 16 slides and have Image Capture scan all 16 slides without having to select each one in turn?  It is a real pain to have to direct each scan.

    Hi jpbear
    I am going to take credit for finding the solution that the HP Photo Suite from OSX 5 works in subsequent Mac OSX. Look at this web page.
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4019&lc=en&cc=us&dlc=en&sw_lang=&product=3236...
    If this doesn't work for you, I am willing to guide you to finding the page. I downloaded a copy a few minutes ago and it was still available. The Photo Suite is actually an amazing set of applications but the one you want to use with your HP ScanJet  G4050 is HP Scan Pro. I continue to use it with OSX 9 but other people have reported that it continues to work with OSX 10 as well. It allows me to scan the 16 slides on the bed individually with one pass. It also has some colour balancing function.
    Frangelica

  • Image Capture sends error message when importing photos from my camera

    I tried to import photos from my Fuji FinePix JX600 using Iphoto. Received an error notice and was unable to import. Tried Image Capture and it imported 220 of 407 pictures and then sent an error notice. Very frustrated. It's a new camera and I never had any problem with my old camera. Can anyone tell me what the issue may be and how to resolve it?
    Thanks

    Good afternoon
    There seem to be a number of possibilities.
    Here is a thread that conatins a number of solutions.  The most common one is to load 50 pics at a time.
    https://discussions.apple.com/thread/3947440?start=0&tstart=0
    Hope this helps

  • IPhone 4 not recognized by Image Capture

    help! so i'm trying to transfer photos i've taken with my iphone to my mac. when i open image capture, the iphone doesn't pop up as a recognizable device. tried to google the issue and to no avail... any help is appreciated! thanks

    I had the same issue and when I searched for a solution, all I found was your question. So I messed around a bit and got it working.
    I'm no computer engineer, so I did about 3 things at once rather than 1 at a time. Thus, I don't know if it was one step or a series of steps that got things working again so I'll tell you what I did and you can take it from there.
    I had the iphone 4 connected with the cable. I had image capture running. It listed the proper number of images but I couldn't see the thumbnails and when I downloaded all, the newest ones didn't download.
    In image capture, I went to the devices menu and clicked "browse devices" and unchecked iphone. Then I did a hard reset of the iphone by pressing the home and power button at the same time until the apple logo appeared. Image capture said no devices were connected. After the reboot (while still plugged into the USB), image capture showed my phone and all the thumbnails correctly.
    I'm guessing it was just the reboot that did the trick.
    good luck.

  • Canoscan 4400f not recognized by image capture

    My imac with lion installed will not recognize my canoscan 4400f scanner. My white macbook is fine.
    I have tried using Cannon software and it tells me no driver is found.

    I had the same issue and when I searched for a solution, all I found was your question. So I messed around a bit and got it working.
    I'm no computer engineer, so I did about 3 things at once rather than 1 at a time. Thus, I don't know if it was one step or a series of steps that got things working again so I'll tell you what I did and you can take it from there.
    I had the iphone 4 connected with the cable. I had image capture running. It listed the proper number of images but I couldn't see the thumbnails and when I downloaded all, the newest ones didn't download.
    In image capture, I went to the devices menu and clicked "browse devices" and unchecked iphone. Then I did a hard reset of the iphone by pressing the home and power button at the same time until the apple logo appeared. Image capture said no devices were connected. After the reboot (while still plugged into the USB), image capture showed my phone and all the thumbnails correctly.
    I'm guessing it was just the reboot that did the trick.
    good luck.

  • Epson Photo RX600 no longer recognized by Image Capture but still prints

    Recently my Epson Photo RX600 disappeared from Image Capture (in between doing an overview and final scan) and I can no longer seem to find/assign it. I am still able to print to the device through my Mac and to scan/copy using the buttons on the device, but no luck on scanning through the Mac. Any advice?
    Thanks.

    My name is Syd and I work for Epson America, Inc.
    If nothing has been changed on the computer itself, you may want to re-install the ICA scanner driver and restart. If this does not work and the RX600 is connected directly to your Mac USB port, we would recommend contacting tech support to more quickly determine the issue as there are variables involved. The direct number is 562-276-4382.
    Here to help,
    Syd

  • Image Capture won't scan: Canon MP 610

    Hello,
    I experience a strange bug in Image Capture which I use together with my Canon MP610. When I put a document on the scanner Image Capture will show a preview and then scan the document. This works fine.
    Sometimes I need to make some manual corrections by using the button "show details" and then resize the scan area after the program has analyzed the picture. After I made the corrections I hit the "Scan" button but Image Capture will return with the message "Scanner has reported an error" and "An error occurred during scanning".
    I first thought it might be a driver related problem as I recently updated the drivers from the Canon site. Before I installed the Canon drivers and used the OSX drivers all worked fine.
    So I removed all drivers from Canon and hoped the Mac would use the old drivers again. That didn't work either as the system couldn't seem to find any usable driver anymore. I reinstalled the Canon drivers and all works well again except for the Image Capture program.
    As long as I don't use the "Show Details" button the scanner works just fine. But as soon as I make some manual corrections the scanner error message pops up and the scanner won't scan the adjusted preview.
    So I know for sure the Mac sees the scanner and can control it as the scanner does deliver the images to the folder I specify, but I can't do any manual corrections.
    I already deleted the file "com.apple.ImageCaptureApp.plist" but that didn't solve the problem. It appears to be a bug in the program itself or a conflict between the app and the drivers from Canon. How can I revert back to the drivers that my Mac used before I installed the Canon drivers?
    Thanks!

    Thanks PAHU that were a lot of drivers for sure in your link and I installed those. Unfortunately, nor the driver package nor the ICA driver did solve my problem. I'm beginning to think it might just be a bug within Image Capture, although Image Capture is stating the scanner is reporting an error. Strange thing is that Image Capture will work fine as long as I hide the details pane.
    It seems to be an isolated problem too as I can't find any other subject on this on the net. I see more people having trouble to scan images with Image Capture but that's mostly related to not selecting the right part of the preview. I will see if I can reinstall Image Capture from the OSX dvd.

Maybe you are looking for

  • Screen enhancment for PR,PO and MIGO

    Hi experts, I have added long material text(more than 40 characters) into material master using screen enhancement , now i want to add this into Purchase Requisition , Purchase order  and MIGO . I have added LONG TEXT into PR & PO using screen enhanc

  • MS-SQL Server 2008 Update Statistics

    Hi, We have SAP running on MS-SQL 2008. Can we use the command 'sp_updatestats' to update stats on all tables in the schema or  is there any option we can schedule a job from DBACOCKPIT? Thanks, Kris

  • Content of second level TAB's not visible

    Hi All, I have designed a page have nested TAB's. When we click to on any first level tab, then the contents on the first second level tab is not visible. Neither there a Hyperlink to the title of that tab. How can the contents be made visible. I am

  • Error 40102 creating a record

    Hi, this is 'my scenario'. In a Form I have created 2 blocks; the first is a data block with 15 rows and scroll bar, populated from a table. The second block is a toolbar with button save, new, prev etc. In the button New i have a trigger WHEN-BUTTON

  • Itunes won't recognize apple id

    I can sign in to the Apple website and this forum, but iTunes won't recognize my apple ID. Any suggestions?