SimpleImageStim
====================================

.. code-block:: python

    class psychopy.visual.SimpleImageStim(win, image='', units='',
        pos=(0.0, 0.0), flipHoriz=False, flipVert=False, name=None,
        autoLog=None)

画像をファイルから読み込んで、解像度、色を変更せずそのまま描画する(PsychoPyでガンマ補正をしている場合は適用される)。

ImageStimと異なり、この刺激は拡大、縮小、回転、マスクを適用することができない(ただし垂直および水平方向のフリップは可能である)。画像データがグラフィックカードに事前に読み込まれないので、描画はやや遅い傾向にある。SimpleImageStimのメリットは画像が常にオリジナルのアスペクト比のままに描画されることと、読み込み自体はわずかに速いてんである。

.. A simple stimulus for loading images from a file and presenting at exactly the resolution and color in the file (subject to gamma correction if set).

.. Unlike the ImageStim, this type of stimulus cannot be rescaled, rotated or masked (although flipping horizontally or vertically is possible). Drawing will also tend to be marginally slower, because the image isn’t preloaded to the graphics card. The slight advantage, however is that the stimulus will always be in its original aspect ratio, with no interplotation or other transformation, and it is slightly faster to load into PsychoPy.

.. mro() → list

.. return a type’s method resolution order