Showing posts with label image. Show all posts
Showing posts with label image. Show all posts

Friday, April 7, 2023

format de fichier nifti .nii et codes en python, javascript, matlab, mathematica...

 The Neuroimaging Informatics Technology Initiative (NIfTI) is an open file format


présentation du format

https://nifti.nimh.nih.gov

file nifti1.h

https://nifti.nimh.nih.gov/pub/dist/src/niftilib/nifti1.h

The NIfTI 1 header is a small C structure of size 352 bytes.

sizeof_hdr      : 348
data_type       : b''
db_name         : b''
extents         : 0
session_error   : 0
regular         : b'r'
dim_info        : 57
dim             : [  4 128  96  24   2   1   1   1]
intent_p1       : 0.0
intent_p2       : 0.0
intent_p3       : 0.0
intent_code     : none
datatype        : int16
bitpix          : 16
slice_start     : 0
pixdim          : [   -1.      2.      2.      2.2  2000.      1.      1.      1. ]
vox_offset      : 0.0
scl_slope       : nan
scl_inter       : nan
slice_end       : 23
slice_code      : unknown
xyzt_units      : 10
cal_max         : 1162.0
cal_min         : 0.0
slice_duration  : 0.0
toffset         : 0.0
glmax           : 0
glmin           : 0
descrip         : b'FSL3.3\x00 v2.25 NIfTI-1 Single file format'
aux_file        : b''
qform_code      : scanner
sform_code      : scanner
quatern_b       : -1.94510681403e-26
quatern_c       : -0.996708512306
quatern_d       : -0.081068739295
qoffset_x       : 117.855102539
qoffset_y       : -35.7229423523
qoffset_z       : -7.24879837036
srow_x          : [  -2.      0.      0.    117.86]
srow_y          : [ -0.     1.97  -0.36 -35.72]
srow_z          : [ 0.    0.32  2.17 -7.25]
intent_name     : b''
magic           : b'n+1'

The NIfTI 2 header is similar, but of length 540 bytes, with fewer fields.

Cox, R. W., J. Ashburner, H. Breman, K. Fissell, C. Haselgrove, C. J. Holmes, J. L. Lancaster, D. E. Rex, S. M. Smith, J. B. Woodward, and S. C. Strother. "A (sort of) new image data format standard: NiFTI-1." 10th Annual Meeting of Organisation of Human Brain Mapping, Budapest, Hungary, June 2004.

NiBabel; Access a cacophony of neuro-imaging file formats

en python 


en javascript

A JavaScript NIfTI file format reader. 
This reader supports both NIfTI-1 and NIfT1-2 file formats, both compressed (.nii.gz) and uncompressed (.nii).

on line with your own server

Papaya is a pure JavaScript medical research image viewer, supporting DICOM and NIFTI formats, compatible across a range of web browsers. This orthogonal viewer supports overlays, atlases, GIFTI & VTK surface data and DTI data. The Papaya UI is configurable with many display, menu and control options and can be run on a web server or as a local, shareable file.

online

matlab

Introduced in R2017b
pour le header:
The niftiinfo function supports both the NIfTI1 and NIfTI2 file formats.

mathematica

il ne lit de manière native qu'à partie de la version 13.1 (qui nécessite mac os ≥10.14)




Wednesday, July 26, 2017

mac sierra 10.2, hijacking and security of app downloaded from the internet (must be signed with a Developer ID certificate)


Gatekeeper Path Randomization

Gatekeeper is a security feature that has already been in place for several years. When enabled, Gatekeeper checks whether an app downloaded from the internet has been signed with a Developer ID certificate, which third-party developers such as Rogue Amoeba purchase from Apple. If the app is Developer ID-signed, then Gatekeeper allows the app to launch. If the app is not signed, then Gatekeeper will refuse to launch the app.
In 2015, security researcher Patrick Wardle discovered a vulnerability in Gatekeeper called dylib hijacking.
 https://reverse.put.as/wp-content/uploads/2015/11/vb201503-dylib-hijacking.pdf
Wardle determined that if a Developer ID-signed app loads resources external to its app bundle via a relative file path, an attacker could package the app together with malicious external resources in order to work around the Gatekeeper protection. The app would pass the Gatekeeper check and be allowed to launch, after which it would load the malicious external resources. Wardle found that a number of popular apps, including some of Apple’s own apps, could be used as a vector for such an attack.

Gatekeeper Path Randomization is an attempt to avoid this vulnerability. It works by mounting a read-only disk image in a temporary path in the file system, copying the app onto that disk image, then launching the app from there. With the app bundle’s path thus changed, it will no longer find any external resources where it was expecting them, and thus the loading of malicious resources is prevented.

https://weblog.rogueamoeba.com/2016/06/29/sierra-and-gatekeeper-path-randomization/

The problem with Gatekeeper Path Randomization is that copying applications to a read-only disk image will break functionality in many, if not most, existing applications. Perhaps most notable, features like automatic software updates (via Sparkle or similar mechanisms) will no longer work. Apple may not view this as an issue, given that GPR will be disabled once the user moves the application out of the Downloads folder. However, many users run applications from the Downloads folder, never moving them. This is especially common when a user is trying out an application prior to purchasing it, and an app that doesn’t work as expected due to GPR seems certain to lead to lost sales. Worse, even if the customer moves your app to their Applications folder, it may continue to be broken, depending on how your app is packaged.

Example with ImageJ

macOS 10.12 (Sierra) introduces a security feature called Path Randomization that can cause ImageJ to not work as expected. Path randomization is in effect if the “ImageJ home” path shown in the Image>Show Info window starts with “/private” and plugins are not installed in the Plugins menu. You can disable path randomization by moving ImageJ.app (the icon of your application) out of the ImageJ folder and then copying it back. If the ImageJ folder is in /Applications you will need to hold down the alt key while dragging ImageJ.app out of the ImageJ folder.
https://imagej.nih.gov/ij/docs/install/osx.html

ImageJ cannot use the plugins.

ImageJ is designed to look (every time it runs) for the plugins directory in the same folder where ImageJ.app is located. If you want to override that, you can use the command as you have found, or you can edit the Info.plist file that is inside the ImageJ.app folder.
Right-click on ImageJ.app and select Show Package Contents.
Open Info.plist (if you have Xcode it will be the default to open that file) and append to the Java->VMOptions line the location of the plugins folder you want to use, for example:

VMOption -Xms256m -Xmx3000m -Dplugins.dir=/Users/me/myplugins

If the directory you specify doesn't exist, it just reverts to the default of looking where ImageJ.app is.



Sunday, July 23, 2017

alternatives open free à adobe première. Liste et comparaison pour mélanger video (y compris AVCHD) et photo et music.


Intro

l'excellent VLC hélas n'est qu'un player. On l'utilisera pour visualiser le résulat final.

besoins

Je veux un éditeur/publisher qui mixe image et video pour faire ce job:
j'ai bcp de video et photo sur mon portable ou mon téléphone et je veux faire une seulz video avec un son per exemple une chanson ou en gardant le son des video.

Je veux faire des captures d'écran et enregistrer du son puis faire une video... (voir les options des éditeurs).

Import image sequences from your camera to create a cartoon frame by frame. Then, export as an animated GIF or share on YouTube.

info

En sept 2017 google "tue" ses outils youTube de l'éditeur de vidéo et du diaporama "intégré".
https://www.engadget.com/2017/07/21/youtube-kills-the-video-editing-tools-you-never-used/
L'édition vidéo sur Internet est lente par rapport aux applications natives, car il faut télécharger (upload) votre vidéo puis télécharger (down) la copie finale. Cela dit, c'était une bonne option pour les utilisateurs ou les utilisateurs de Chromebook avec des ordinateurs portables ou des tablettes peu puissantes.

Si vous êtes prêt à payer et que vous disposez d'un PC ou d'un Mac approprié, d'autres applications autonomes incluent
Adobe Premiere CC,
Final Cut Pro X d'Apple pour Mac uniquement
Media Composer professionnel d'Avid. Avid a également une application gratuite appelée Media Composer First,

Apple a iMovie pour Mac et iMovie et Clips pour iOS,
tandis que Microsoft possède Movie Maker pour Windows.
Si vous voulez juste un éditeur Web, il existe des options comme Magisto et WeVideo qui fonctionnent sur la plupart des navigateurs, y compris le navigateur Chrome sur Chromebook.

But

ce post va traiter des offres "libre et open".

Une comparaison
https://en.wikipedia.org/wiki/Comparison_of_video_editing_software

Il faut aussi vérifier si le logiciel prend en charge vos fichiers comme AVCHD (Advanced Video Codec High Definition). voir une liste de soft d'édition qui prend en charge ce format:
https://fr.wikipedia.org/wiki/Advanced_Video_Codec_High_Definition

Les aggrégateurs photo video avec schémas

avant d'aborder les "premières"-light, qq nouveaux softs de 2017 pour aller vite dans la production de video à partir d'un stock de media.

quik de goPro

que iphone/ipad and android

clips d'Apple

que iphone/ipad 
The app allows users to combine videos, images and music into one seamless video ready to be shared not only via the likes of Facebook, Twitter and Instagram, but also via iMessage too.
It sits somewhere between the video generator baked into the Photos app in iOS 10 and iMovie for iOS, which is regarded as being a high-end video editing app (in terms of smartphone apps, anyway!).
Clips is a new app for making fun videos to share with friends, family and the world. With a few taps, you can create and send a video message or tell a quick story with animated text, graphics and emoji, music and more. 

Videos made easy
•    Clips lets you create videos in real time using simple controls — no timeline, tracks or complicated editing tools
•    Shoot live video and photos or add them from your library
•    Easily mute audio, and adjust the length of your clips and reorder them
•    Clips looks and works great on iPhone, iPad and iPod touch

Live Titles
•    Create animated titles and captions using just your voice
•    Captions are generated automatically as you speak and match the timing of your voiceover
•    Mix and match different styles throughout your video
•    Tap your title to adjust text and punctuation or add inline emoji 

Fun effects
•    Give your photos and video clips a comic book look with colour and black & white filters
•    Drop in animated speech bubbles, arrows and banners
•    Add emoji on top of any photo or video clip
•    Use full-screen posters with animated backgrounds and customisable text to help tell your story
• Drag and pinch while recording to add smooth pan and zoom animations to your photos and videos
•    Add a music track from your library or use built-in soundtracks that automatically adjust to the length of your video

Smart sharing
•    Clips suggests people to share with based on who is in your video and who you share with most often
•    Tap a person in the share sheet to instantly send your video via Messages
•    Send directly to Instagram, Facebook, YouTube and other popular social media sites

Apple Web SiteClips SupportApplication Licence Agreement

What's New in Version 1.1 (07/2017)
• Customise your videos with animated Disney graphics featuring Mickey, Minnie and more
• Add Pixar graphics to your videos with characters from Toy Story and Inside Out
• Choose from dozens of new customisable text banners, overlays and posters

vimeo tools

wevideo

web services & que iphone/ipad and android and win 10

Storyo

Storyo creates stories automatically based on the metadata in your photos (like time and location) along with other bits and pieces of information it harvests online, like maps. It brings photos and data together in beautifully simple video-stories, called storyos.
Automated Storytelling
A single photo or simple sequence of shots just doesn’t do your most magnificent moments justice. That’s why we’ve designed an intelligent algorithm that organizes photos in chapters according to when and where great times took place. The result is a true-to-life story told in narrative form – from fabulous beginning to fantastic end.
But it’s your story, so feel free to tweak it until you love it - add or delete photos, change its length, play around with filters, or switch the soundtrack to a song from your own music library.
https://www.storyoapp.com/

OpenShot

OpenShot Video Editor est un éditeur vidéo non-linéaire libre pour GNU/Linux, construit avec Python, GTK+, et le framework MLT (Media Lovin' Toolkit (en)). Il intègre le moteur Blender pour créer des titres et effets (feux d’artifices, jeux de lumières, neige, mappemonde animée) évolués.
AVCHD (Advanced Video Codec High Definition)  OK
Linux, Mac, and Windows.
http://www.openshot.org/
https://en.wikipedia.org/wiki/OpenShot

Kdenlive 

https://kdenlive.org/
https://en.wikipedia.org/wiki/Kdenlive
https://kdenlive.org/toolbox/
FreeBSD, Linux, Windows,
OSX: Kdenlive and MLT can compile and run under Mac OS X. Packages are available from the MacPorts project, unfortunately they are outdated.

Shotcut

FreeBSD, Linux, OS X, Microsoft Windows

VideoPad Video Editor

Video Editing Software 
Windows XP/Vista/7/8/8.1/10
Works on Mac OS X 10.5 and above
Android version runs on 2.3.3 or higher

-un des processeurs de streaming vidéo les plus rapides du marché.
-effets sonores de la sonothèque gratuite

http://www.nchsoftware.com/videopad/index.html

photofilmstrip

PhotoFilmStrip creates movies out of your pictures in just 3 steps. First select your photos, customize the motion path and render the video. There are several output possibilities for VCD, SVCD, DVD up to FULL-HD.
The effect of the slideshow is known as "Ken Burns". Comments of the pictures are generated into a subtitle file. Furthermore an audio file can be specified to setup the background music for the slide show.
In contrary to other projects i know so far, PhotoFilmStrip has the opportunity to render slide show in Full-HD (1920x1080) resolution.

GUI or command line interface for batch processing
python
Win, GNU-linux

http://www.photofilmstrip.org/1-1-Home.html

Wednesday, July 19, 2017

HDR, EDR, wides gamuts DCI-P3, 10bits for each RGB-Transparency and screen


"HDR (High Dynamic Range)" video describes pixels using three different criteria:

  • Greater resolution (“more pixels”)
  • Greater color saturation (“fatter pixels”)
  • Greater shadow and highlight range (“brighter pixels”)--> only this criteria for classic HDR.

DCI P3 (Digital Cinema Initiative P3) falls into the “greater color saturation” section. It sets the white point at 6500° Kelvin and is more saturated than traditional HD video, but not as deeply saturated as the ultimate goal of Rec. 2020. Apple calls this “wide color,” or “wide color gamut,” media.

None of the new Macs have HDR screens. They offer a wider color gamut and higher resolution than previous gen Macs, but they are not HDR.

Timing DCI-P3

DCI-P3 was defined by the Digital Cinema Initiatives (DCI) organization and published by the Society of Motion Picture and Television Engineers (SMPTE) in SMPTE EG 432-1 and SMPTE RP 431-2.
In September 2015, Apple's iMac desktop became the first consumer computer with a built-in wide-gamut display, supporting the P3 color space.
Normal white LED backlights produce a lot of blue light, but not as much red or green light. Late 2015 iMacs are using the not-that-new GB-r LED backlight technology. This creates a much stronger green and red spectral component to match the already strong blue. The larger gamut can reproduce more vivid greens, reds, and their derivatives (cyan, yellow, magenta). http://www.astramael.com/
In August 2016, the Samsung Galaxy Note 7 shipped with an HDR display with 100% DCI-P3 color gamut.
https://en.wikipedia.org/wiki/DCI-P3
In September 2016, Apple's iPhone 7 shipped with a wide-gamut display, supporting P3.
In October 2016, Apple's new MacBook Pro notebook computers were released with P3 displays.

DCI-P3

Traditionally, the folks that cared the most about extended color spaces were professional still photographers. This is because, in the past, HD video created the significantly lower resolution images where a 1080p frame contained 2.1 million pixels at 8-bit depth, while a 4×5 inch digital negative could contain up to 40 million pixels at 16-bit depth.
In the world of still photos, Adobe RGB (and its close cousin sRGB) reigned supreme as the color space of choice because of its color range and dynamics.
From what I read, the DCI P3 color space is optimized for projection systems, not for monitors. Why? Because P3 was the color space designed for use by digital cinema projectors in theaters.
This means that many photographers are puzzled about why Apple chose a video standard for its monitors, rather than a stills standards. Apple hasn’t responded to these questions, but my guess it that consumers are embracing video in all aspects of their life – both socially and professionally – and it makes sense to support them with greater video quality. Also, the P3 spec has more reds and warmer colors than Adobe RGB.
https://larryjordan.com/articles/configure-the-new-macbook-pro-to-p3-color-space/

To view or change the color space setting for your monitor, open System Preferences > Display and click the Color tab. The top option – Color LCD – isn’t labeled “P3,” but it is. When you compare the Color LCD setting with the Display P3 setting, you’ll see they are essentially identical.

There’s a great way to explore the differences between Adobe RGB, HD (Rec. 709), P3, and HDR (Rec. 2020) color spaces. It’s called ColorSync and its already installed in the Utility folder on your system.
Open the Utility folder inside Applications (shortcut: Shift + Cmd + U), then open the ColorSync Utility. This program allows you to view and modify color profiles.
Click the Display P3 profile and, on the right, is a visual representation of the colors that can be displayed in the P3 color space; illustrated above.
One of the hidden features of ColorSync is the ability to compare color spaces, so you can easily see the differences between them.

Mac OS

Sierra & EDR, In  french, En français

macOS Sierra supporte  une technologie de type pseudo-HDR, qu’Apple nomme EDR.
L’idée du "pseudo-HDR" est d’augmenter fortement le contraste pour obtenir des images plus naturelles. La méthode typique, proposée par Apple, consiste à abaisser la valeur du noir et d’augmenter fortement la luminosité de l’écran pour créer un éblouissement. Actuellement, le "HDR" est essentiellement utilisé dans les films, Netflix (dans certains cas, comme la série Marco Polo) ou certains Blu-ray Ultra HD proposent des effets de ce type. Le HDR améliore l’immersion avec un soleil vraiment éblouissant, des lumières plus réalistes, etc.

Le support dans macOS Sierra semble limité pour le moment : ça ne fonctionne qu’en OpenGL ou avec Metal (l’API graphique maison) et uniquement sur les iMac 27 pouces Retina (5K). On peut supposer que la vidéo devrait tirer parti de cette possibilité avec la version finale, en même temps que les couleurs encodées sur 10 bits, les dalles wide gammut (même si c’est déjà le cas) et (j’espère) le codec HEVC (alias H.265).

http://www.journaldulapin.com/2016/07/07/macos-sierra-supporte-le-hdr/
http://www.journaldulapin.com/2017/04/25/wide-gammut-os-x/

Pour faire simple, le monde de l’informatique travaille généralement avec des couleurs codées sur 8 bits, soit 256 valeurs possibles pour chaque canal (rouge, vert, bleu et la transparence, soit 32 bits). Dans les moniteurs, les premiers LCD travaillaient sur 6 bits, les modèles modernes évidemment sur 8 bits, mais depuis quelques années des modèles 10 bits (1 024 valeurs) arrivent sur le marché. Avec OS X El Capitan (et évidemment macOS Sierra), le support a été ajouté et il est donc possible de brancher un écran “10 bits” sur un Mac (écran HDR vrai).

carte vidéo

Sur un MacBookPro2016 la carte vidéo est une Intel Iris Graphics 540.
https://www.notebookcheck.net/Intel-Iris-Graphics-540.149939.0.html
The revised video engine now decodes H.265/HEVC completely in hardware and thereby much more efficiently than before. Displays can be connected via DP 1.2 / eDP 1.3 (max. 3840 x 2160 @ 60 Hz), whereas HDMI is limited to the older version 1.4a (max. 3840 x 2160 @ 30 Hz). However, HDMI 2.0 can be added using a DisplayPort (DP) converter. Up to 3 displays can be controlled simultaneously.
https://www.intel.com/content/www/us/en/support/graphics-drivers/000022440.html

Safari accepte les images 10 bits

L’intérêt de l’affichage sur 10 bits est de notamment améliorer les dégradés entre les couleurs, étant donné qu’il existe plus d’intermédiaires possibles. Les écrans 10 bits utilisent aussi souvent un espace de couleurs plus large, ce qui permet d’afficher des couleurs qui n’existent pas dans l’espace de couleur classique. En clair, une image comme celle présentée sur ce post de blog chez Webkit (https://webkit.org/blog/6682/improving-color-on-the-web/) apparaît complètement rouge sur un écran 8 bits classique, mais montre un logo sur un écran 10 bits avec un espace de couleur étendu. Le rouge du logo utilise des valeurs qu’un écran classique interprète comme la valeur maximale du rouge, alors qu’il s’agit d’une teinte distincte pour un modèle moderne. Certains écrans peuvent d’ailleurs combiner des couleurs 8 bits classiques avec un espace large (wide gammut) et afficher le logo, c’est le cas des MacBook Pro 2016.

Une image prévue pour un affichage sur un écran wide gammut,
sinon que du rouge pour les autres


Le support des écrans 10 bits a de l’intérêt dans le monde de la photo, car beaucoup d’appareils peuvent photographier en RAW en 10, 12 ou même 14 bits.

Les wides gamuts sont plutôt à partir de l’espace AdobeRVB (https://en.wikipedia.org/wiki/Wide-gamut_RGB_color_space) et dernièrement P3 chez Apple.
Cependant, chose rare pour un sRVB, il supporte les couleurs 10 bits par le displayPort.
Le logo au centre est hors de l’espace sRGB. Y a pas besoin de 10 bits pour le voir, juste un écran wide gamut (P3 par exemple, comme certains Mac) ou un profil de couleur bizarre. Sur mon écran *pas* wide gamut, certains profils ICC affichent bien le logo.
Il s'affiche dans chrome safari mais pas Firefox des versions de Juin 2017 sur mac sierra et macBook Pro 2016.
Le profil de couleur est dans l’image jpeg, mais tous les navigateurs le chargent pas...




lens and zoom sony minolta (Tamron, SIgma) for A-mount or E-mount (adapt)


 beercanMinolta AF 70-210mm f/4

100-200mm f/4.5

List

https://en.wikipedia.org/wiki/List_of_Minolta_A-mount_lenses

https://en.wikipedia.org/wiki/List_of_Sony_A-mount_lenses

http://kurtmunger.com/sony_lens_chartid223.html

Examples

many zoom


Minolta AF 70-210mm f/4

The first generation body is made of metal. There is a focus limiter switch to speed up focusing. The lens and the Minolta AF 70-210mm f/4 lens are colloquially known as the "beercan" by Minolta/Sony camera users because their lens shape and size closely match the proportions of a typical aluminum beer can.
https://en.wikipedia.org/wiki/Minolta_AF_Zoom_70-210mm_f/4

However, production slowed and then eventually stopped for both the AF and MD versions; its successors, the 70-210mm f/3.5-4.5 and 70-210mm f/4.5-5.6 had none of the qualities of the original and build and image quality decreased...
It remains popular, however, for use on digital single lens reflex cameras using the AF system, such as the Sony α. Although relatively bulky and weighty, the lens is valued for its solid build, sharpness, constant maximum aperture and smooth bokeh effect, though it suffers from more pronounced aberrations than equivalent modern designs. It provides a 1:4 magnification (at minimum focus, an object records at 1/4 its size on film or sensor).

For APS-C users; this is a good lens, and can be had for about the same amount of money as Sony telephoto zoom lenses in this category, but not with a constant F/4 aperture, because Sony doesn't offer one.  The Minolta AF 70-210mm F/4 is well built, reasonably sharp at all apertures, and considering the constant F/4 aperture; very inexpensive.  The main reason you would buy this lens is the use of F/4 at 210mm.

If you don't need the extra stop, buy the smaller and lighter Sony 75-300mm F/4.5-5.6, or the real diminutive (APS-C only) DT Sony 55-200mm (http://kurtmunger.com/sony_55_200mm_f_4_5_6_reviewid212.html), all for about the same amount of money.  Many people in chat rooms claim this is the greatest telephoto zoom lens Minolta ever made, unfortunately, that's not true, it's good, but not that good.  Again, if you really need the extra stop for low light shooting, go for it, if not, get the more useful Sony models, which have distance encoding, (used mostly for flash), and are much more portable.  See the review of the excellent Minolta AF 100-200mm F/4.5 (constant), which is just as good as the 70-210mm F/4 lens.

Diameter filter 
100-200mm F/4.5 -->49mm
70-210mm F/4.     -->55mm
Here's the really good news; overall, this lens performs much the same as the Minolta AF 70-210mm F/4, but usually sells for half the cost, and is much smaller and easier to carry around.
http://kurtmunger.com/minolta_af_100_200mm_f_4_5id269.html

For those of you with $900, get the much more useful Sony 70-300mm F/4.5-5.6 G SSM, or the way less expensive Tamron 70-300mm F/4-5.6.
http://kurtmunger.com/minolta__af_70_210mm_f_4__reviewid25.html

Big Beercan

The Minolta 75-300mm F/4.5-5.6
The Minolta AF 75-300mm F/4-4.5 is one of the original Minolta AF tele-zooms from the mid-to-late 1980s.  It's well built, with a minimum of plastic components, which makes it heavy for its size.  Sony has a current lens (Minolta designed) with the same focal length, the Sony 75-300mm F/4.5-5.6, which is much lighter, smaller, and is not built as well.  Sony also has a better lens than this, the Sony 70-300mm F/4.5-5.6 SSM G.

Here are the good things about this lens; above average build quality with plenty of metal, and a nice focus limiter switch and focus distance window, it's nice and sharp at F/8 on the long end, near 75mm it's sharp wide open.  The corners are almost as sharp as the centers, even with full frame coverage.

Now let's talk about the not-so-good things; both axial and lateral color fringing are very strong towards the long end, especially with full frame coverage, and much of it won't go away by stopping down.  Manual focusing is a chore as the ring is at the end of the rather long barrel.  There is some zoom creep if the lens is not kept level.  This lens is large and heavy, much more so than the less expensive, same focal length Sony model mentioned above.

I can't help but think the Sony 75-300mm F/4.5-5.6 may be about as good as this lens.  Both have the same color fringing issues.  The Sony is smaller, lighter, has Distance integration, and a price tag of about half what you'd currently pay for the Minolta.  I suppose they each have their place, and it all depends on someone's preferences.  Personally, I'd stay away from both the above mentioned lenses and get the highly recommended Tamron 70-300mm F/4-5.6 USD for a little more money.

http://kurtmunger.com/75300bigbeercanid59.html

four models:

Minolta AF Zoom 75-300mm f/4.5-5.6 2561-100,[42] 2561-110, 2561-600,[42] 2561-610[29] 25611[2] Zoom 35mm 5-pin[42] 55mm[42] No No No 1985-08[29] Black finish

Minolta AF Zoom 75-300mm f/4.5-5.6 New 2649-110 13? Zoom 35mm 5-pin 55mm No No No 1996 Black finish

Minolta AF Zoom 75-300mm f/4.5-5.6 II 2665-110, 2665-160 13? Zoom 35mm 5-pin 55mm No No No 1999 Black or silver finish

Minolta AF Zoom 75-300mm f/4.5-5.6 (D) 2684-910, 2684-960 29 Zoom 35mm 8-pin 55mm Yes (distance encoder) No No 2001 Black or silver finish; succeeded by Sony SAL-75300

https://en.wikipedia.org/wiki/Minolta_AF_Zoom_75-300mm_f/4.5-5.6#SAL-75300

prices

beercan
70-80€
https://www.leboncoin.fr/image_son/1149370544.htm?ca=22_s
https://www.leboncoin.fr/image_son/1147708292.htm?ca=22_s


100-200mm F/4.5 
40€
http://www.ebay.fr/itm/Minolta-AF-100-200mm-f4-5-Lens/263007873181?_trksid=p2047675.c100009.m1982&_trkparms=aid%3D777003%26algo%3DDISCL.MBE%26ao%3D1%26asc%3D20140620091512%26meid%3Dae4c64003d54413482fc066b7d9da03c%26pid%3D100009%26rk%3D4%26rkt%3D10%26sd%3D263034079053

---

big beercan; Minolta-AF-Zoom-75-300mm 1:4.5-5.6 

http://www.dyxum.com/lenses/Minolta-AF-75-300-F4.5-5.6-D_lens55.html
64€
lègère fissure
http://www.ebay.fr/itm/Exc-Minolta-AF-Zoom-75-300mm-1-4-5-5-6-D-Black-100-Sony-et-Minolta/322524145753?_trksid=p2047675.c100005.m1851&_trkparms=aid%3D222007%26algo%3DSIM.MBE%26ao%3D1%26asc%3D20140620091323%26meid%3D61ff5bffbf0f4ababaa9b14599a73dc2%26pid%3D100005%26rk%3D2%26rkt%3D6%26sd%3D162558888795

ZOOM MINOLTA AF 75-300 / 4,5-5,6 II black
50€
http://www.ebay.fr/itm/ZOOM-MINOLTA-AF-75-300-4-5-5-6-II/263034079049?_trksid=p2047675.c100005.m1851&_trkparms=aid%3D222007%26algo%3DSIM.MBE%26ao%3D1%26asc%3D20140620091323%26meid%3Deb292e7d69a842389da77c79c116aa57%26pid%3D100005%26rk%3D1%26rkt%3D6%26sd%3D322524145753

55€+14=69€
silver
http://www.ebay.fr/itm/MINOLTA-AF-zoom-75-300-1-4-5-5-6-full-frame-Minolta-SONY-Alpha-excellent-/222550590898?hash=item33d10c85b2:g:8CEAAOSwDrNZRuz0

Sony 75-300mm 1:4,5-5,6 Macro - SAL75300
78€
(200€ sony new)

sigma AF 75-300mm 1:4.5-5.6 (BOF)

http://www.ebay.fr/itm/objectif-zoom-sigma-af-75-300mm-1-4-5-5-6-pour-sony-alpha/182619561023?_trksid=p2047675.c100005.m1851&_trkparms=aid%3D222007%26algo%3DSIM.MBE%26ao%3D1%26asc%3D20140620091323%26meid%3D61ff5bffbf0f4ababaa9b14599a73dc2%26pid%3D100005%26rk%3D5%26rkt%3D6%26sd%3D162558888795

or the APO:
http://www.dyxum.com/reviews/lenses/Sigma-75-300mm-F4.5-5.6-APO-DL_review342.html

Sigma 70-300 mm 4-5.6 DG Macro 58 mm
75€ rebuy
https://www.rebuy.fr/i,3416402/photos-et-cameras/sigma-70-300-mm-4-5-6-dg-macro-58-mm-objectif-adapte-a-sony-minolta-a-type-noir


Tamron SP 70-300 mm 4-5.6 Di USD 62 mm 

not the old Tamron Objectif AF 70-300mm F/4-5,6 Di LD IF Macro 1/2

225€ rebuy TBE
https://www.rebuy.fr/i,9983805/photos-et-cameras/tamron-sp-70-300-mm-4-5-6-di-usd-62-mm-objectif-adapte-a-sony-minolta-a-type-noir

http://www.tamron.eu/fr/objectifs-photo/sp-af-70-300-f4-56-di-vc-usd/

Tamron 70-200 f2.8 

The Tamron SP AF 70-200mm F/2.8 Di LD (IF) macro telephoto zoom lens is made in Japan and features a constant fast aperture of F/2.8 with a typical Tamron build quality, meaning the fit and finish are nice, with a metal mount, but there is plenty of plastic to run your hand over, including the zoom ring, focusing ring, and most of the forward barrel section.  It looks like metal is used in the first section from the mount area.

This lens was designed for a full frame camera.  If you have an APS-C camera, the equivalent capture area will be 105mm-300mm.  If you want to know what the ridiculously long name of this lens means, look no further.  The "SP" means "super performance," and "AF" means auto focus (duh), Di means it's made for full frame use, "LD" stands for "low dispersion" glass to correct for chromatic aberrations, also known as color fringing, "IF" stands for "internal focus," which means the lens doesn't extend in length when focused, and finally, "Macro" means it can focus quite closely, down to almost a third life size in this case.

The Tamron SP AF70-200mm F/2.8 Di LD (IF) macro lens is a low cost alternative to the more expensive Sony model, also tested here.  Is it worth it?  It all depends on what's important to you.

Build quality is not great like the Sony, and the slot/screw drive focusing system is slow, but pretty accurate.  Unfortunately, there are no focus hold or focus limiter buttons to help out, that's the down side.  On the up side, the lens performs very well optically, with relatively low distortion, good control of both axial and lateral color fringing, although color fringing is noticeable along the sides at the short end to about 135mm.

The Tamron 70-200mm F/2.8 is slightly soft wide open at all zoom lengths, although F/2.8 results become more soft as you near 200mm.  However, by stopping down to F/4 the centers and mid-sections look quite sharp and are totally usable at all focal lengths.  The full frame mid-sections and corners need about an extra stop to sharpen up and match APS-C results in most cases, but that's very predictable and normal.  My verdict; good image quality from F/3.5-11, and very good image quality from F/4-8.

Use thoughts; Wedding photography; it should work fine (before the booze), if you're wanting to take pictures at a football game from the cheap seats in daylight or with good stadium lighting, the Tamron 70-200mm F/2.8 will perform well.  If you're near the sidelines trying to catch the action close by, or shooting events like high-energy rock concerts, I'd probably go for the more expensive Sony 70-200mm F/2.8 G, which has faster focusing along with a focus limiter and focus hold buttons.  Bottom line; the Tamron 70-200mm F/2.8 is well worth the price if you don't need fast focusing.

http://kurtmunger.com/tamron_70_200mm_f_2_8reviewid128.html


Monday, July 17, 2017

test des limites avec le rapport 1:1 avec l'objectif minolta 100mm 2.8 minolta et le sony alpha 65V


Exmor APS HD CMOS sensor : 23.5 x 15.6mm

15.6mm/4000pix->3.9µm/pix : taille du photosite.

Avec le rapport 1:1 et l'objectif minolta 100mm 2.8 minolta et le sony alpha 65V
On peut détecter au mieux du 12µm (3photosites).

Le test ici a été effectué avec un CD audio.

avec f/D =20

toute l'image.
Et avec un zoom num de 5000 sur la partie orange:

Ce test permet de voir les effets aussi liés à la couleur du capteur.

Friday, February 10, 2017

Connaître le nom des images insérées dans un document .doc .docx avec word; récupérer les images d’un document en résolution maximale


Connaître le nom des images insérées 

Contexte

Vous avez inséré des images dans un long document Word et vous aimeriez ultérieurement connaître le nom de fichier original des images insérées (et pourquoi pas, soyons fous, le chemin d’accès).

Solution

Ouvrez le document Word contenant les images
Allez dans le menu Fichier > Aperçu de la page Web, laquelle s’ouvre alors dans un navigateur (FireFox dans mon exemple)
Faites un clic droit > Code source de la page
Appuyez sur Cmd + F pour effectuer une recherche. Tapez le critère .jpg (si les images étaient des .jpg évidemment…)
A quelque part dans ce bazar coloré, vous retrouvez le nom et le chemin d’accès des images insérées :

https://people.unil.ch/jacquelinefrey/2015/03/word-connaitre-le-nom-des-images-inserees-dans-un-document/

Récupérer les images d’un document en résolution maximale

Contexte

Vous avez inséré dans votre document Word un nombre important d’images provenant de sources différentes (captures d’écran, photos, clipart,…) que vous avez ensuite redimensionné dans le document. Vous aimeriez pouvoir récupérer toutes ces images en résolution maximale même celles pour lesquelles vous ne disposiez pas de fichier à l’origine (par ex. les captures d’écran ou les images copiées-collées depuis Internet).

Solution

Transformez votre document Word en archive… autrement dit :

Si nécessaire, fermez le document contenant les images
Par prudence, faites une copie du document

  • Modifiez manuellement* l’extension du fichier copié de .docx en .zip
  • Acceptez le changement d’extension en cliquant sur le bouton Utiliser .zip
  • Ouvrez le dossier d’archive ainsi créé
  • Dans ce dossier, ouvrez ensuite le dossier Word puis le dossier Media; toutes les images contenues dans votre document ont été enregistrées au format gif, png ou jpeg selon le type d’images 

*en effet, la commande Compresser obtenue à l’aide du bouton droit de la souris ne donne pas le même résultat. Cette astuce fonctionne également avec des fichiers PowerPoint.

https://people.unil.ch/jacquelinefrey/2014/10/word-recuperer-les-images-dun-document-en-resolution-maximale/

Monday, January 9, 2017

docx word et google docs vers HTML dans blogger. Comment recuperer les images videos que vous avez filmees avec votre smartphone ?



Ici c'est un iframe via google doc.

A la base on a un fichier .docx simple (pas d'image, pas de table).

La sauvegarde HTML dans word ou avec google doc n'est pas utilisable.

On fait du copier/coller de word vers le mode Compose de blogger, ce qui donne

(si on veut enlever le fond blanc, il faut nettoyer le code html en enlevant "background: white")

COMMENT RÉCUPÉRER LES IMAGES QUE VOUS AVEZ FILMÉES AVEC VOTRE SMARTPHONE ? 
Avant tout, vous devez au préalable copier sur le disque dur les plans que vous avez tournés avec le smartphone. Commencez donc par brancher le téléphone à la prise USB de votre ordinateur. Et si vous ne savez pas comment accéder au contenu du smartphone pour copier les vidéos, découvrez, ci-dessous, la méthode qui correspond à votre configuration...
Vous utilisez un PC et :
-       un smartphone Android de marque Samsung, HTC, LG…, déverrouillez l’écran du smartphone puis branchez-le sur un port USB du PC. Si vous êtes invités à choisir un type de connexion, choisissez Média USB. Puis utilisez la fenêtre de transfert de fichiers qui s’ouvre sur votre PC pour glisser/déposer les fichiers qui vous intéressent comme vous le feriez avec n’importe quel média externe, disque dur ou clé USB. Les films que vous avez capturés se trouvent généralement dans le dossier DCIM/Camera. A l’instar d’une clé USB, n’oubliez pas enfin d’éjecter votre smartphone de Windows avant de débrancher son câble USB.
-       un smartphone Android de marque Sony : Sony propose son propre outil -Media Go- pour transférer les fichiers multimédias de ses smarphones vers un PC. Vous pourrez le télécharger à l’adresse goo.gl/vvgTSL.
-       un Windows Phone : selon la version de Windows installée sur votre PC (Windows XP, Windows 7, 8 ou 10) les méthodes sont différentes. Vous les trouverez détaillées sur une page d’assistance du site de Microsoft à l’adressegoo.gl/x7yp0B
-       un iPhone : les méthodes varient selon les versions de Windows. Vous trouverez sur cette page du support technique d’Apple goo.gl/U0Zu3m, celle qui correspond à votre PC… ainsi qu’un guide au cas où votre iPhone ne serait malencontreusement pas reconnu par votre ordinateur.
Vous utilisez un Mac et :
-       un smartphone Android  (Samsung, HTC, LG…) : le logiciel Android Files Transfer suffit. Téléchargez-le à l’adressegoo.gl/Tem8V. Une fois installé, branchez votre appareil Android à un port USB du Mac et déverrouillez son écran puis lancez Android File Transfer qui présente alors les dossiers contenus dans le smartphone. Ouvrez le dossier DCIM puis le sous-dossier Caméra qui contient les photos (au format .jpg) mais aussi les films (au format .mp4) que vous avez capturés. Faites glisser vers le Mac ceux que vous voulez récupérer.
-       un smartphone Android de Sony : Sony propose son propre outil -Bridge for Mac- pour transférer les fichiers multimédias de ses smartphones vers un Mac. Vous pourrez le télécharger à l’adresse goo.gl/2vYexT
-       un Windows Phone de Nokia ou Microsoft : les Windows Phone disposent aussi de leur propre outil de transfert des vidéos sur Mac. Il est baptisé Nokia Photo Transfer et vous pourrez le télécharger à l’adresse goo.gl/DXmsYf
-       un iPhone : pas la peine de passer par iTunes, ni par iPhoto et de synchroniser vos photos et vidéos ! La méthode la plus simple, consiste à rapatrier  manuellement les vidéos qui vous intéressent avec le logiciel Transfert d’images, fourni avec votre Mac et présent dans son dossier Applications. Branchez votre iPhone au port USB de votre ordinateur et déverrouillez-le. Lancez Transfert d’images, et acceptez le cas échéant la connexion avec l’iPhone -en cliquant sur l’optionSe fier du message affiché sur le smartphone-. Cliquez sur l’iPhone apparu en haut à gauche dans la fenêtre de Transfert d’images, puis sélectionnez dans la fenêtre principale, la ou les vidéos à récupérer sur votre ordinateur, et faites-les glisser sur le Bureau ou dans le dossier de votre choix sur votre disque dur. Apple détaille cette manipulation sur cette page : goo.gl/wbe9PA. Mais si vous tenez absolument à passer par iPhoto, vous en trouverez la méthode sur cette autre page : goo.gl/DBgv6v.

 ---

On fait du copier/coller de google doc vers mode compose dans Chrome.

COMMENT RÉCUPÉRER LES IMAGES QUE VOUS AVEZ FILMÉES AVEC VOTRE SMARTPHONE ? 
Avant tout, vous devez au préalable copier sur le disque dur les plans que vous avez tournés avec le smartphone. Commencez donc par brancher le téléphone à la prise USB de votre ordinateur. Et si vous ne savez pas comment accéder au contenu du smartphone pour copier les vidéos, découvrez, ci-dessous, la méthode qui correspond à votre configuration...
Vous utilisez un PC et :
-       un smartphone Android de marque Samsung, HTC, LG…, déverrouillez l’écran du smartphone puis branchez-le sur un port USB du PC. Si vous êtes invités à choisir un type de connexion, choisissez Média USB. Puis utilisez la fenêtre de transfert de fichiers qui s’ouvre sur votre PC pour glisser/déposer les fichiers qui vous intéressent comme vous le feriez avec n’importe quel média externe, disque dur ou clé USB. Les films que vous avez capturés se trouvent généralement dans le dossier DCIM/Camera. A l’instar d’une clé USB, n’oubliez pas enfin d’éjecter votre smartphone de Windows avant de débrancher son câble USB.
-       un smartphone Android de marque Sony : Sony propose son propre outil -Media Go- pour transférer les fichiers multimédias de ses smarphones vers un PC. Vous pourrez le télécharger à l’adresse goo.gl/vvgTSL.
-       un Windows Phone : selon la version de Windows installée sur votre PC (Windows XP, Windows 7, 8 ou 10) les méthodes sont différentes. Vous les trouverez détaillées sur une page d’assistance du site de Microsoft à l’adresse: goo.gl/x7yp0B
-       un iPhone : les méthodes varient selon les versions de Windows. Vous trouverez sur cette page du support technique d’Apple goo.gl/U0Zu3m, celle qui correspond à votre PC… ainsi qu’un guide au cas où votre iPhone ne serait malencontreusement pas reconnu par votre ordinateur.
Vous utilisez un Mac et :
-       un smartphone Android  (Samsung, HTC, LG…) : le logiciel Android Files Transfer suffit. Téléchargez-le à l’adresse goo.gl/Tem8V. Une fois installé, branchez votre appareil Android à un port USB du Mac et déverrouillez son écran puis lancez Android File Transfer qui présente alors les dossiers contenus dans le smartphone. Ouvrez le dossier DCIM puis le sous-dossier Caméra qui contient les photos (au format .jpg) mais aussi les films (au format .mp4) que vous avez capturés. Faites glisser vers le Mac ceux que vous voulez récupérer.
-       un smartphone Android de Sony : Sony propose son propre outil -Bridge for Mac- pour transférer les fichiers multimédias de ses smartphones vers un Mac. Vous pourrez le télécharger à l’adresse goo.gl/2vYexT
-       un Windows Phone de Nokia ou Microsoft : les Windows Phone disposent aussi de leur propre outil de transfert des vidéos sur Mac. Il est baptisé Nokia Photo Transfer et vous pourrez le télécharger à l’adresse goo.gl/DXmsYf
-       un iPhone : pas la peine de passer par iTunes, ni par iPhoto et de synchroniser vos photos et vidéos ! La méthode la plus simple, consiste à rapatrier  manuellement les vidéos qui vous intéressent avec le logiciel Transfert d’images, fourni avec votre Mac et présent dans son dossier Applications. Branchez votre iPhone au port USB de votre ordinateur et déverrouillez-le. Lancez Transfert d’images, et acceptez le cas échéant la connexion avec l’iPhone -en cliquant sur l’optionSe fier du message affiché sur le smartphone-. Cliquez sur l’iPhone apparu en haut à gauche dans la fenêtre de Transfert d’images, puis sélectionnez dans la fenêtre principale, la ou les vidéos à récupérer sur votre ordinateur, et faites-les glisser sur le Bureau ou dans le dossier de votre choix sur votre disque dur. Apple détaille cette manipulation sur cette page : goo.gl/wbe9PA. Mais si vous tenez absolument à passer par iPhoto, vous en trouverez la méthode sur cette autre page : goo.gl/DBgv6v.