Python torchvision.get_image_backend() Examples

The following are 30 code examples of torchvision.get_image_backend(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module torchvision , or try the search function .
Example #1
Source File: diving48.py    From SDN with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #2
Source File: SCNN.py    From DBCNN-PyTorch with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #3
Source File: LIVEChallengeFolder.py    From DBCNN-PyTorch with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #4
Source File: SCNN3.py    From DBCNN-PyTorch with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #5
Source File: BaseCNN.py    From DBCNN-PyTorch with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #6
Source File: Koniq_10k.py    From DBCNN-PyTorch with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #7
Source File: charadesrgb.py    From actor-observer with GNU General Public License v3.0 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #8
Source File: folder.py    From scalpel with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #9
Source File: dataset.py    From video_feature_extractor with Apache License 2.0 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        import accimage
        return accimage_loader
    else:
        return pil_loader 
Example #10
Source File: dataset.py    From video-caption.pytorch with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        import accimage
        return accimage_loader
    else:
        return pil_loader 
Example #11
Source File: utils.py    From PyVideoResearch with GNU General Public License v3.0 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #12
Source File: folder_new.py    From CDAN-re-implement with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #13
Source File: folder_new.py    From SymNets with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #14
Source File: celeba.py    From face-attribute-prediction with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #15
Source File: ucf101.py    From SDN with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #16
Source File: WPFolder.py    From DBCNN-PyTorch with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #17
Source File: kinetics.py    From SDN with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #18
Source File: activitynet.py    From SDN with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #19
Source File: hmdb51.py    From SDN with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #20
Source File: jester.py    From Efficient-3DCNNs with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #21
Source File: ucf101.py    From Efficient-3DCNNs with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #22
Source File: kinetics.py    From Efficient-3DCNNs with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #23
Source File: ImageFolderCustomClass.py    From WatermarkNN with MIT License 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #24
Source File: dataset.py    From video-classification-3d-cnn-pytorch with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        import accimage
        return accimage_loader
    else:
        return pil_loader 
Example #25
Source File: datahelpers.py    From Landmark2019-1st-and-3rd-Place-Solution with Apache License 2.0 5 votes vote down vote up
def default_loader(path):
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader(path)
    else:
        return pil_loader(path) 
Example #26
Source File: jester.py    From Real-time-GesRec with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #27
Source File: egogesture_online.py    From Real-time-GesRec with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #28
Source File: egogesture.py    From Real-time-GesRec with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #29
Source File: nv.py    From Real-time-GesRec with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader 
Example #30
Source File: kinetics.py    From Real-time-GesRec with MIT License 5 votes vote down vote up
def get_default_image_loader():
    from torchvision import get_image_backend
    if get_image_backend() == 'accimage':
        return accimage_loader
    else:
        return pil_loader