Subscribe to PixelSham.com RSS for free

3Dprinting (182) A.I. (907) animation (354) blender (217) colour (241) commercials (53) composition (154) cool (370) design (657) Featured (91) hardware (317) IOS (109) jokes (140) lighting (300) modeling (157) music (189) photogrammetry (197) photography (757) production (1309) python (102) quotes (498) reference (318) software (1379) trailers (308) ves (575) VR (221)

POPULAR SEARCHES unreal | pipeline | virtual production | free | learn | photoshop | 360 | macro | google | nvidia | resolution | open source | hdri | real-time | photography basics | nuke

  • Explore Posts
  • Job Postings
  • ReelMatters.com
  • About and Contact
    • About And Contact
    • Portfolio
    • Privacy Policy
    • RSS feed page

BREAKING NEWS

LATEST POSTS

  • Revopoint POP 3D hand scanner for IOS and Android

    pIXELsHAM.com
    Jun 15, 2021
    3Dprinting, hardware

    shop.revopoint3d.com/products/pop-3d-scanner

    https://www.youtube.com/watch?v=Hb3kZ–0IAo

    Views : 1,414
  • WebAR tutorial

    pIXELsHAM.com
    Jun 15, 2021
    VR

    With Unity

    Views : 1,121
  • Capturing Detailed Deformations of Moving Human Bodies | Siggraph 2021

    pIXELsHAM.com
    Jun 15, 2021
    software

    Views : 807
  • Playing With Time

    pIXELsHAM.com
    Jun 12, 2021
    commercials, cool, design

    Views : 635
  • Apple KeyNote – Create 3D models with Object Capture

    pIXELsHAM.com
    Jun 9, 2021
    hardware, modeling, photogrammetry, production, software

    https://developer.apple.com/videos/play/wwdc2021/10076/

     

    https://developer.apple.com/documentation/realitykit/capturing_photographs_for_realitykit_object_capture

     

    https://sketchfab.com/alban/collections/object-capture

     

    Views : 2,885
  • 7 Easy Portrait Lighting Setups

    pIXELsHAM.com
    Jun 9, 2021
    lighting, photography

    Butterfly

    Loop

    Rembrandt

    Split

    Rim

    Broad

    Short

    Views : 647
  • Schofield’s Laws of Computing

    pIXELsHAM.com
    Jun 5, 2021
    quotes, software

    https://www.freecodecamp.org/news/schofields-laws-of-computing/

     

    “Never put data into a program unless you can see exactly how to get it out.” ― Jack Schofield (2003)

     

    “Data doesn’t really exist unless you have at least two copies of it.” ― Jack Schofield (2008)

     

    “The easier it is for you to access your data, the easier it is for someone else to access your data.” ― Jack Schofield (2008)

    Views : 646
  • Advanced Computer Vision with Python OpenCV and Mediapipe

    pIXELsHAM.com
    Jun 4, 2021
    Featured, production, python, software

    https://www.freecodecamp.org/news/advanced-computer-vision-with-python

    (more…)
    Views : 1,180
  • How to Build a Hackintosh

    pIXELsHAM.com
    Jun 4, 2021
    hardware, production

    https://www.freecodecamp.org/news/build-a-hackintosh/

    A Hackintosh is a non-Mac computer system, made with PC parts, that runs the macOS operating system.

    Views : 759
  • Neural Actor: Neural Free-view Synthesis of Human Actors with Pose Control

    pIXELsHAM.com
    Jun 4, 2021
    software

    gvv.mpi-inf.mpg.de/projects/NeuralActor/


    Views : 709
  • Basic GafferHQ python introduction

    pIXELsHAM.com
    Jun 2, 2021
    python, software

    Working with the Python Scripting API
    http://www.gafferhq.org/documentation/1.0.2.0/WorkingWithThePythonScriptingAPI/index.html

     

    Node Graph editing in Python
    https://www.gafferhq.org/documentation/1.0.0.0/WorkingWithThePythonScriptingAPI/TutorialNodeGraphEditingInPython/index.html

     

    Common operations
    https://www.gafferhq.org/documentation/1.0.0.0/Reference/ScriptingReference/CommonOperations/index.html

     

    Scripting box nodes
    https://blog.gafferhq.org/?p=278

     

    Dev and pipe tips
    https://blog.gafferhq.org/?cat=35

     

     

    import GafferScene
    import Gaffer
    
    # return a list of selections
    # (nodes HAVE TO BE selected for the following)
    sel = root.selection() # gaffer standard set
    
    list(sel)
    sel[0].typeName()
    dir( sel[0] )
    sel[0].getName()
    sel.clear()
    root.removeChild( sel[0] )
    
    # store the selected nodes in a variable
    >>> sel = root.selection()
    >>> myGroup = sel[0]
    >>> light = sel[1]
    
    # set location name
    myGroup['name'].setValue('groupLocation')
    light['name'].setValue('photometricLightLocation')
    # connect a node to a group
    >>> myGroup['in'][0].setInput( light['out'] )
    
    # return the node/port attached to a group port
    >>> myGroup['in'][0].childNames('/')
    photometricLightLocation
    
    >>> myGroup['in'][0].getInput().fullName()
    >>> myGroup['in'][0].source().fullName()
    gui.scripts.ScriptNode.lighting_in1.PhotometricLightNode.out
    
    # return the full name of one of the objects
    # attached to the out port
    >>> light['out'].outputs()[0].fullName()
    gui.scripts.ScriptNode.lighting_in1.GroupNode.in.in0
    
    >>> light
    GafferArnold.ArnoldLight( "PhotometricLightNode" )
    
    >>> light['out'].childNames('')
    photometricLightLocation
    
    >>> light['out'].outputs()[0].node()
    GafferScene.Group( "Group" )
    
    
    Views : 287
  • Steven Meizler – Cinematographer on The Queen’s Gambit

    pIXELsHAM.com
    Jun 1, 2021
    lighting

    ascmag.com/videos/clubhouse-conversations-the-queens-gambit

    Views : 908
  • Natron – Open Source Compositing Software For VFX and Motion Graphics

    pIXELsHAM.com
    Jun 1, 2021
    production, software

    natrongithub.github.io/

    Views : 1,036
  • LuxCore – Open Source, Physically Based Renderer for Blender

    pIXELsHAM.com
    Jun 1, 2021
    blender, production, software

    luxcorerender.org/

     

    https://en.wikipedia.org/wiki/LuxCoreRender#:~:text=Although%20the%20original%20LuxRender%20is,rendering%20caustics%20in%20some%20circumstances.

    Note: Although the original LuxRender is a full spectral renderer, the new LuxCoreRender drops full spectral rendering in favor of simulating spectral dispersion when required.[14][15] However, this leads to some inaccuracies when rendering caustics in some circumstances.[16]

     

    Views : 1,081
  • appleseed – an Open Source, physically-based global illumination, Blender friendly rendering engine

    pIXELsHAM.com
    Jun 1, 2021
    blender, production, software

    appleseedhq.net/

    Views : 881
Previous Page
1 … 169 170 171 172 173 … 435
Next Page

FEATURED POSTS

  • Mickmumpitz – Create CONSISTENT CHARACTERS from an INPUT IMAGE with FLUX and a character sheet! (ComfyUI Tutorial + Installation Guide + Lora training)

    pIXELsHAM.com
    Dec 23, 2024
    A.I.

    https://www.patreon.com/posts/create-from-with-115147229

    Note: the image below is not from the workflow

    Nodes:
    Install missing nodes in the workflow through the manager.

    Models:
    Make sure not to mix SD1.5 and SDLX models.
    Follow the details under the pdf below.

    General suggesions:
    – Comfy Org / Flux.1 [dev] Checkpoint model (fp8)
    The manager will put it under checkpoints, which will not work.
    Make sure to put it under the models/unet folder for the Load Diffusion Model node to work.

    – same for realvisxlV50_v50LightningBakedvae.safetensors
    it should go under models/vae


    [FREE GUIDE] Mickmumpitz Character Sheets with FLUX and SDXLDownload

    [FREE GUIDE] Mickmumpitz Character Consistency v02Download
    Views : 3,008
  • Tara – The $199 stereo camera

    pIXELsHAM.com
    Jul 31, 2016
    3Dprinting, photography

    http://3dprintingindustry.com/news/double-vision-budget-new-199-stereo-camera-90293/

     

    https://www.e-consystems.com/3D-USB-stereo-camera.asp

     

    Views : 1,120
  • Web vs Printing or digital RGB vs CMYK

    pIXELsHAM.com
    Nov 10, 2017
    colour, Featured, production, reference
    (more…)
    Views : 2,870
  • Creative People Who Are On Another Level

    pIXELsHAM.com
    May 25, 2019
    design

    Views : 1,010
  • Machine Learning base lighting reconstruction

    pIXELsHAM.com
    Feb 2, 2021
    A.I., lighting

    Views : 661
Views : 17,698

RSS feed page

Search


Categories


Archive


Disclaimer


Links and images on this website may be protected by the respective owners’ copyright. All data submitted by users through this site shall be treated as freely available to share.