本文整理汇总了Python中psychopy.tools.attributetools.logAttrib函数的典型用法代码示例。如果您正苦于以下问题:Python logAttrib函数的具体用法?Python logAttrib怎么用?Python logAttrib使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了logAttrib函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: setRadius
def setRadius(self, radius, log=True):
"""Changes the radius of the Polygon. If radius is a 2-tuple or list, the values will be
interpreted as semi-major and semi-minor radii of an ellipse."""
self.radius = numpy.asarray(radius)
self._calcVertices()
self.setVertices(self.vertices, log=False)
logAttrib(self, log, 'radius', radius)
开发者ID:larigaldie-n,项目名称:psychopy,代码行数:7,代码来源:circle.py
示例2: setFlipVert
def setFlipVert(self, newVal=True, log=None):
"""If set to True then the movie will be flipped vertically (top-to-bottom).
Note that this is relative to the original, not relative to the current state.
"""
self.flipVert = newVal
logAttrib(self, log, 'flipVert')
self._needVertexUpdate = True
开发者ID:Lx37,项目名称:psychopy,代码行数:7,代码来源:movie.py
示例3: setColors
def setColors(self, color, colorSpace=None, operation="", log=None):
"""See ``color`` for more info on the color parameter and
``colorSpace`` for more info in the colorSpace parameter.
"""
setColor(
self,
color,
colorSpace=colorSpace,
operation=operation,
rgbAttrib="rgbs", # or 'fillRGB' etc
colorAttrib="colors",
colorSpaceAttrib="colorSpace",
)
logAttrib(self, log, "colors", value="%s (%s)" % (self.colors, self.colorSpace))
# check shape
if self.rgbs.shape in ((), (1,), (3,)):
self.rgbs = numpy.resize(self.rgbs, [self.nElements, 3])
elif self.rgbs.shape in ((self.nElements,), (self.nElements, 1)):
self.rgbs.shape = (self.nElements, 1) # set to be 2D
self.rgbs = self.rgbs.repeat(3, 1) # repeat once on dim 1
elif self.rgbs.shape == (self.nElements, 3):
pass # all is good
else:
raise ValueError("New value for setRgbs should be either " "Nx1, Nx3 or a single value")
self._needColorUpdate = True
开发者ID:neuroidss,项目名称:psychopy,代码行数:26,代码来源:elementarray.py
示例4: loadMovie
def loadMovie(self, filename, log=True):
"""Load a movie from file
:Parameters:
filename: string
The name of the file, including path if necessary
After the file is loaded MovieStim.duration is updated with the movie
duration (in seconds).
"""
self.reset() #set status and timestamps etc
# Create Video Stream stuff
if os.path.isfile(filename):
self._mov = VideoFileClip(filename, audio= (1-self.noAudio))
if (not self.noAudio) and (self._mov.audio is not None):
self._audioStream = sound.Sound(self._mov.audio.to_soundarray(),
sampleRate = self._mov.audio.fps)
else: #make sure we set to None (in case prev clip did have auido)
self._audioStream = None
else:
raise IOError("Movie file '%s' was not found" %filename)
#mov has attributes:
# size, duration, fps
#mov.audio has attributes
#duration, fps (aka sampleRate), to_soundarray()
self._frameInterval = 1.0/self._mov.fps
self.duration = self._mov.duration
self.filename = filename
self._updateFrameTexture()
logAttrib(self, log, 'movie', filename)
开发者ID:papr,项目名称:psychopy,代码行数:33,代码来源:movie3.py
示例5: setSfs
def setSfs(self, value,operation='', log=True):
"""Set the spatial frequency for each element.
Should either be:
- a single value
- an Nx1 array/list
- an Nx2 array/list (spatial frequency of the element in X and Y).
If the units for the stimulus are 'pix' or 'norm' then the units of sf
are cycles per stimulus width. For units of 'deg' or 'cm' the units
are c/cm or c/deg respectively.
"""
#make into an array
if type(value) in [int, float, list, tuple]:
value = numpy.array(value, dtype=float)
#check shape
if value.shape in [(),(1,),(2,)]:
value = numpy.resize(value, [self.nElements,2])
elif value.shape in [(self.nElements,), (self.nElements,1)]:
value.shape=(self.nElements,1)#set to be 2D
value = value.repeat(2,1) #repeat once on dim 1
elif value.shape == (self.nElements,2):
pass#all is good
else:
raise ValueError("New value for setSfs should be either Nx1, Nx2 or a single value")
# Set value and log
setWithOperation(self, 'sfs', value, operation)
logAttrib(self, log, 'sfs', type(value))
开发者ID:del82,项目名称:psychopy,代码行数:32,代码来源:elementarray.py
示例6: setMask
def setMask(self,value, log=True):
"""Change the mask (all elements have the same mask). Avoid doing this
during time-critical points in your script. Uploading new textures to the
graphics card can be time-consuming."""
self.mask = value
self.createTexture(value, id=self._maskID, pixFormat=GL.GL_ALPHA, stim=self, res=self.texRes)
logAttrib(self, log, 'mask')
开发者ID:del82,项目名称:psychopy,代码行数:7,代码来源:elementarray.py
示例7: seek
def seek(self, timestamp, log=None):
"""Seek to a particular timestamp in the movie.
NB this does not seem very robust as at version 1.62, may crash!
"""
self._player.seek(float(timestamp))
logAttrib(self, log, 'seek', timestamp)
开发者ID:flipphillips,项目名称:psychopy,代码行数:7,代码来源:movie.py
示例8: _set
def _set(self, attrib, val, op='', log=True):
"""Use this to set attributes of your stimulus after initialising it.
:Parameters:
attrib : a string naming any of the attributes of the stimulus (set during init)
val : the value to be used in the operation on the attrib
op : a string representing the operation to be performed (optional) most maths operators apply ('+','-','*'...)
examples::
myStim.set('rgb',0) #will simply set all guns to zero (black)
myStim.set('rgb',0.5,'+') #will increment all 3 guns by 0.5
myStim.set('rgb',(1.0,0.5,0.5),'*') # will keep the red gun the same and halve the others
"""
#format the input value as float vectors
if type(val) in [tuple,list]:
val=numpy.array(val,float)
#change the attribute as requested
setWithOperation(self, attrib, val, op)
#update the actual coherence for the requested coherence and nDots
if attrib in ['nDots','coherence']:
self.coherence=round(self.coherence*self.nDots)/self.nDots
logAttrib(self, log, attrib)
开发者ID:BrainTech,项目名称:psychopy,代码行数:28,代码来源:dot.py
示例9: setPhases
def setPhases(self,value,operation='', log=True):
"""Set the phase for each element.
Should either be:
- a single value
- an Nx1 array/list
- an Nx2 array/list (for separate X and Y phase)
"""
#make into an array
if type(value) in [int, float, list, tuple]:
value = numpy.array(value, dtype=float)
#check shape
if value.shape in [(),(1,),(2,)]:
value = numpy.resize(value, [self.nElements,2])
elif value.shape in [(self.nElements,), (self.nElements,1)]:
value.shape=(self.nElements,1)#set to be 2D
value = value.repeat(2,1) #repeat once on dim 1
elif value.shape == (self.nElements,2):
pass#all is good
else:
raise ValueError("New value for setPhases should be either Nx1, Nx2 or a single value")
#set value and log
setWithOperation(self, 'phases', value, operation)
logAttrib(self, log, 'phases', type(value))
self._needTexCoordUpdate=True
开发者ID:del82,项目名称:psychopy,代码行数:27,代码来源:elementarray.py
示例10: setStart
def setStart(self, start, log=True):
"""Changes the start point of the line. Argument should be
- tuple, list or 2x1 array specifying the coordinates of the start point"""
self.start = start
self.setVertices([self.start, self.end], log=False)
logAttrib(self, log, 'start')
开发者ID:larigaldie-n,项目名称:psychopy,代码行数:7,代码来源:line.py
示例11: setFlipHoriz
def setFlipHoriz(self, newVal=True, log=None):
"""If set to True then the movie will be flipped horizontally (left-to-right).
Note that this is relative to the original, not relative to the current state.
"""
self.flipHoriz = newVal
logAttrib(self, log, 'flipHoriz')
self._needVertexUpdate = True
开发者ID:Lx37,项目名称:psychopy,代码行数:7,代码来源:movie.py
示例12: seek
def seek(self, timestamp, log=True):
"""Seek to a particular timestamp in the movie.
"""
if self.status in [PLAYING, PAUSED]:
if timestamp > 0.0:
if self.status == PLAYING:
self.pause()
player = self._audio_stream_player
if player and player.is_seekable():
player.set_time(int(timestamp * 1000.0))
self._audio_stream_clock.reset(-timestamp)
MSEC = cv2.CAP_PROP_POS_MSEC
FRAMES = cv2.CAP_PROP_POS_FRAMES
self._video_stream.set(MSEC, timestamp * 1000.0)
self._video_track_clock.reset(-timestamp)
self._next_frame_index = self._video_stream.get(FRAMES)
self._next_frame_sec = self._video_stream.get(MSEC)/1000.0
else:
self.stop()
self.loadMovie(self.filename)
if log:
logAttrib(self, log, 'seek', timestamp)
self.play()
开发者ID:dgfitch,项目名称:psychopy,代码行数:25,代码来源:movie2.py
示例13: loadMovie
def loadMovie(self, filename, log=None):
"""Load a movie from file
:Parameters:
filename: string
The name of the file, including path if necessary
Brings up a warning if avbin is not found on the computer.
After the file is loaded MovieStim.duration is updated with the movie
duration (in seconds).
"""
try:
self._movie = pyglet.media.load(filename, streaming=True)
except Exception as e:
# pyglet.media.riff is N/A if avbin is available, and then
# actual exception would get masked with a new one for unknown
# (sub)module riff, thus catching any exception and tuning msg
# up if it has to do anything with avbin
estr = str(e)
msg = ''
if "avbin" in estr.lower():
msg = ("\nIt seems that avbin was not installed correctly."
"\nPlease fetch/install it from "
"http://code.google.com/p/avbin/.")
emsg = "Caught exception '%s' while loading file '%s'.%s"
raise IOError(emsg % (estr, filename, msg))
self._player.queue(self._movie)
self.duration = self._movie.duration
while self._player.source != self._movie:
next(self._player)
self.status = NOT_STARTED
self._player.pause() # start 'playing' on the next draw command
self.filename = filename
logAttrib(self, log, 'movie', filename)
开发者ID:flipphillips,项目名称:psychopy,代码行数:35,代码来源:movie.py
示例14: setPos
def setPos(self, pos, needReset=True, log=True):
"""Set the pos (centre) of the Aperture
"""
self.pos = numpy.array(pos)
self._shape.pos = self.pos
if needReset:
self._reset()
logAttrib(self, log, 'pos')
开发者ID:larigaldie-n,项目名称:psychopy,代码行数:8,代码来源:aperture.py
示例15: setOri
def setOri(self, ori, needReset=True, log=True):
"""Set the orientation of the Aperture
"""
self.ori = ori
self._shape.ori = ori
if needReset:
self._reset()
logAttrib(self, log, 'ori')
开发者ID:larigaldie-n,项目名称:psychopy,代码行数:8,代码来源:aperture.py
示例16: setSize
def setSize(self, size, needReset=True, log=True):
"""Set the size (diameter) of the Aperture
"""
self.size = size
self._shape.size = size
if needReset:
self._reset()
logAttrib(self, log, 'size')
开发者ID:larigaldie-n,项目名称:psychopy,代码行数:8,代码来源:aperture.py
示例17: setTex
def setTex(self,value, log=True):
"""Change the texture (all elements have the same base texture). Avoid this
during time-critical points in your script. Uploading new textures to the
graphics card can be time-consuming.
"""
self.tex = value
self.createTexture(value, id=self._texID, pixFormat=GL.GL_RGB, stim=self, res=self.texRes)
logAttrib(self, log, 'tex')
开发者ID:del82,项目名称:psychopy,代码行数:8,代码来源:elementarray.py
示例18: setRadius
def setRadius(self, radius, log=True):
"""Changes the radius of the Polygon. Parameter should be
- float, int, tuple, list or 2x1 array"""
self.radius = numpy.asarray(radius)
self._calcVertices()
self.setVertices(self.vertices, log=False)
logAttrib(self, log, 'radius')
开发者ID:9173860,项目名称:psychopy,代码行数:8,代码来源:polygon.py
示例19: setFlipVert
def setFlipVert(self,newVal=True, log=True):
"""If set to True then the image will be flipped vertically (top-to-bottom).
Note that this is relative to the original image, not relative to the current state.
"""
if newVal!=self.flipVert: #we need to make the flip
self.imArray = numpy.fliplr(self.imArray)#numpy and pyglet disagree about ori so ud<=>lr
self.flipVert=newVal
logAttrib(self, log, 'flipVert')
self._needStrUpdate=True
开发者ID:9173860,项目名称:psychopy,代码行数:9,代码来源:simpleimage.py
示例20: setFlipHoriz
def setFlipHoriz(self,newVal=True, log=True):
"""If set to True then the image will be flipped horiztonally (left-to-right).
Note that this is relative to the original image, not relative to the current state.
"""
if newVal!=self.flipHoriz: #we need to make the flip
self.imArray = numpy.flipud(self.imArray)#numpy and pyglet disagree about ori so ud<=>lr
self.flipHoriz=newVal
logAttrib(self, log, 'flipHoriz')
self._needStrUpdate=True
开发者ID:9173860,项目名称:psychopy,代码行数:9,代码来源:simpleimage.py
注:本文中的psychopy.tools.attributetools.logAttrib函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论