Subscribe to PixelSham.com RSS for free

3Dprinting (185) A.I. (935) animation (356) blender (224) colour (242) commercials (53) composition (154) cool (375) design (662) Featured (95) hardware (319) IOS (109) jokes (141) lighting (302) modeling (161) music (189) photogrammetry (199) photography (758) production (1312) python (108) quotes (501) reference (318) software (1386) trailers (311) ves (579) 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

  • Mimaki3D Printing 10,000,000 COLORS

    pIXELsHAM.com
    Jan 9, 2023
    3Dprinting

    Views : 341
  • These 4 Ai Tools Will help your productivity

    pIXELsHAM.com
    Jan 8, 2023
    A.I.

    Views : 355
  • 3D Scanning for Free – step by step

    pIXELsHAM.com
    Jan 8, 2023
    photogrammetry

    Views : 591
  • How to use AI Art and ChatGPT to Create a Insane Web Designs

    pIXELsHAM.com
    Jan 8, 2023
    A.I.

    Views : 458
  • Evan Shapiro – Media Universe 4th quarter 2022

    pIXELsHAM.com
    Jan 6, 2023
    ves

     

    https://entertainmentbusinessleague.com/2023-state-of-the-industry-market-report-for-above-the-line-creatives-writers-directors-producers-actors/

    Views : 759
  • Mohsen Tabasi – Stable Diffusion for Houdini through DreamStudio

    pIXELsHAM.com
    Jan 6, 2023
    A.I., production

    https://github.com/proceduralit/StableDiffusion_Houdini

     

    https://github.com/proceduralit/StableDiffusion_Houdini/wiki/

     

    This is a Houdini HDA that submits the render output as the init_image and with getting help from PDG, enables artists to easily define variations on the Stable Diffusion parameters like Sampling Method, Steps, Prompt Strength, and Noise Strength.

    Right now DreamStudio is the only public server that the HDA is supporting. So you need to have an account there and connect the HDA to your account.
    DreamStudio: https://beta.dreamstudio.ai/membership

     

     

    Views : 643
  • Zibra VDB Compression – a new solution, bringing groundbreaking OpenVDB format to game development

    pIXELsHAM.com
    Jan 5, 2023
    software

     

    Zibra VDB Compression is the newest ZibraAI solution, being developed to bring film-quality VFX into games with GPU-powered compressed VDB effects.

     

    Born from a custom AI-based technology, it makes it possible to:

    • Compress huge VFXs, created in different tools and stored in OpenVDB format, up to 20 times, and add more high-quality volumetric VFX to the game, filling it with lifelike visuals, all without increasing the build size;
    • Render volumetric effects in game engines in real-time;
    • Reuse a volumetric effect in multiple use cases, optimizing memory consumption;
    • Change the way the effect looks in different parts of the project with shaders, regulating color, density, and playback speed, all according to your needs.

    Our VDB compression solution also opens new possibilities for realistic scene lighting. With our tech, you can use light data from VFX to light up a scene, add reflections, etc, making your game much more immersive and true to life.

    Views : 581
  • Lightfield capture to LookingGlass “Quilt” image

    pIXELsHAM.com
    Jan 5, 2023
    software

    https://www.summet.com/blog/2022/08/16/lightfield-capture-to-looking-glass-quilt-image-scripted-on-the-command-line/

     

    Quilts are an image standard that Looking Glass uses to produce 3D experiences. This standard is used to describe both still and moving images (pictures and videos).

    The main benefit of the quilt format is that it can work for both images and videos! Quilts allow for an efficient way to store frame by frame data as .mp4, .webm or other common media formats. They’re also compact. for example, the above quilt was compressed to be under 1MB of data!

     

    Each tile in the quilt is a conventional 2D image of a scene. The bottom-left tile of the quilt (view 0) is the leftmost view of the scene, and the top-right tile is the rightmost, like so:

     

    Views : 423
  • Python3 coding differences

    pIXELsHAM.com
    Jan 4, 2023
    python, software

    https://cv-tricks.com/how-to/developer-guide-to-key-differences-between-python-2-and-3/

     

      • Print Statement
      • input() function (returns a string in 3.x; under 2.x use raw_input instead)
      • Unicode Literals
      • Exceptions
      • Rounding
      • List comprehension
      • Generators
      • string.replace is not available anymore
      • reload() should be replaced with import importlib; importlib.reload()
      • As of Python version 3.7, dictionaries are ordered. In Python 3.6 and earlier, dictionaries are unordered but insertion ordered.

     

    Views : 437
  • AI Dresses by MaryAnna

    pIXELsHAM.com
    Jan 3, 2023
    A.I., design

    https://www.linkedin.com/feed/update/urn:li:activity:7015985798567067648

     

    Created by Discord user: @MaryAnna

    Views : 1,601
  • The Safe Zone : This Film Was Written and Directed by AI

    pIXELsHAM.com
    Jan 3, 2023
    A.I., photography, production

    https://nofilmschool.com/2022/12/filmmakers-use-ai-write-and-direct-short-film-and-it-actually-makes-some-sense

     

     

    Views : 595
  • Guillermo Del Toro’s Pinocchio’s making of book

    pIXELsHAM.com
    Jan 3, 2023
    design

    https://artofgdtpinocchio.com/

     

    Views : 418
  • Mutable vs Immutable Objects in Python

    pIXELsHAM.com
    Jan 2, 2023
    python, software

     

    https://medium.com/@meghamohan/mutable-and-immutable-side-of-python-c2145cf72747

     

    Everything in Python is an object.
    Since everything in Python is an Object, every variable holds an object instance. When an object is initiated, it is assigned a unique object id. Its type is defined at runtime and once set can never change, however its state can be changed if it is mutable.

    Simply put, a mutable object can be changed after it is created, and an immutable object can’t.

     

    Mutable objects:
    list, dict, set, byte array

     

    Immutable objects:
    int, float, complex, string, tuple, frozen set [note: immutable version of set], bytes

     

    Views : 386
  • Restore A.I – Free Human Face Restoration Tool

    pIXELsHAM.com
    Jan 2, 2023
    A.I.

    https://www.pixelsham.com/2023/02/06/codeformer-colab-and-hugging-face-open-source-ground-breaking-face-restoration-technique/

     

    Views : 1,023
  • Electroplating 3D Prints | Swords

    pIXELsHAM.com
    Jan 2, 2023
    3Dprinting

    Views : 446
Previous Page
1 … 138 139 140 141 142 … 439
Next Page

FEATURED POSTS

  • 9 Best Hacks to Make a Cinematic Video with Any Camera

    pIXELsHAM.com
    Jul 23, 2022
    composition, lighting, photography, production

    https://www.flexclip.com/learn/cinematic-video.html

    • Frame Your Shots to Create Depth
    • Create Shallow Depth of Field
    • Avoid Shaky Footage and Use Flexible Camera Movements
    • Properly Use Slow Motion
    • Use Cinematic Lighting Techniques
    • Apply Color Grading
    • Use Cinematic Music and SFX
    • Add Cinematic Fonts and Text Effects
    • Create the Cinematic Bar at the Top and the Bottom

     

     

    Views : 680
  • CLAY: A Controllable Large-scale Generative Model for Creating High-quality 3D Assets used for Hyperhuman Rodin – Blender plugin

    pIXELsHAM.com
    Jul 4, 2024
    A.I., blender, modeling

    https://sites.google.com/view/clay-3dlm

     

    https://hyperhuman.deemos.com/rodin

    Views : 113
  • Your peripheral vision is not necessarily what you think it is – your eyes lie to you

    pIXELsHAM.com
    Dec 20, 2016
    photography, production

    http://www.treehugger.com/natural-sciences/your-peripheral-vision-not-necessarily-what-you-think-it.html

    Views : 1,376
  • OCIO, Display Transforms and Misconceptions – Chris Brejon

    pIXELsHAM.com
    Oct 5, 2021
    colour

    chrisbrejon.com/articles/ocio-display-transforms-and-misconceptions/

    Views : 811
  • Create & browse interactive pixel voxel rooms on web and iOS

    pIXELsHAM.com
    Jun 28, 2024
    design

     

    https://rooms.xyz/thaivo/mummytomb

    Views : 71
  • Victor Perez – Mind Mapping Conceptualisation Of Light

    pIXELsHAM.com
    Oct 12, 2021
    colour, lighting

    app.box.com/s/u4tl0j9gy7d8bf3vxc2pmz0j77khtd27

    Views : 984
Views : 20,616

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.