Thursday, March 30, 2017

Long Exposure

Photo 2: Long Exposure Assignments

This assignment will be broken into three parts.
 Part 1 is Light Painting. Click here to see some amazing examples.
Part 2 is nighttime long exposure. Click here to see some awesome examples.
Part 3 is long exposure pictures of your choice. You can do light painting, you can shoot outdoors at night, or you an experiment with something different. You can use people as needed. You can even shoot early morning or late evening instead of at night.

















Long exposure photographyLong exposure photography
Schedule:
Thursday March 30: Practice long exposure and light painting at school.
Tuesday April 4th: Bring lights to class. Shoot in studio or at home.
Thursday April 6th: Bring lights to class. Shoot in studio or at home.
Shooting Day 1. Contact Sheets due both days.
Homework (you can start now): One outdoor long exposure 24 photo shoot done at night or early morning.
Long exposure shots of your choice.
April 9th: Homework due.
Image by gnackgnackgnack

Friday, March 24, 2017

Player Controller 3/24

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[System.Serializable]
public class Boundary
{
    public float xMin, xMax, zMin, zMax;
}

public class PlayerController : MonoBehaviour 
{
    public float speed;
    public float tilt;
    public Boundary boundary;

    void FixedUpdate () 
    {
        float movehorizontal = Input.GetAxis ("Horizontal");
        float movevertical = Input.GetAxis ("Vertical");

        Vector3 movement = new Vector3 (movehorizontal, 0.0f, movevertical);

        GetComponent<Rigidbody> ().velocity = movement * speed;
        GetComponent<Rigidbody> ().position = new Vector3 
            (
                Mathf.Clamp (GetComponent<Rigidbody> ().position.x, boundary.xMin, boundary.xMax), 
                0.0f, 
                Mathf.Clamp (GetComponent<Rigidbody> ().position.z, boundary.zMin, boundary.zMax)
            );
        GetComponent<Rigidbody>().rotation = Quaternion.Euler (0.0f, 0.0f, GetComponent<Rigidbody>().velocity.x * -tilt);
    }
}

Wednesday, March 15, 2017

Export Video Settings

Exporting From Adobe Premiere Pro

These are the settings to export HD Quality Video

File>Export>Media

Format=Quicktime
Preset=HD 1080i 29.97
Video Codec H.264

Name your file in the Output Name. 




Make sure you look where you are saving the file. 

Click Export
Find your project in the area you saved it on the computer.

Next, drop your video in the Vidstore Server. Don't forget to use the Naming Convention: 2-mitchellt-Sequence.

Click on background
Select Go up top
Select Connect to server
Type Vidstore.shorelineschools.org    
Name: scvideo
Password: Outback23
Select SC Video classes
Place video proper class period.

Monday, March 13, 2017

Greyscale Editing

Good morning. 

 Photo 2 students: please find two partners and teach them all the greyscale adjustments methods from last semester.
 Go step by step and have the other students take notes.
 These include Calculations, Ansel Adams, Basic Channel Mixer, Basic Black and White, and Duotone.
Edit 6 candids in grayscale today. Do not turn these pictures in yet.
Also, please work through the tutorials below.

Tomorrow is a Candid Off Campus picturing taking day.
I will try to arrange it so that students can use Highlander Home time to take pictures.
You must have a C or better to leave campus. Please turn in any missing work right now.

Don't forget your Candid homework assignment is due Thursday.

Extra detailed Ansel Adams Tutorial:
https://www.youtube.com/watch?v=IGwLqoL38-o

Black and white adjustment layer technique:
https://www.youtube.com/watch?v=yan0invgros

Curves and Channel Mixer Technique:
https://www.youtube.com/watch?v=Cq_sCa6shE8

Tuesday, March 07, 2017

Photo 2 Candid Photography

http://digital-photography-school.com/11-tips-for-better-candid-photography
http://digital-photography-school.com/make-yourself-invisible-5-tips-for-successful-candid-photography

Your assignment over the next week is  to shoot three contact sheets full of candid photos between now and Tuesday March 8 . 
One of these contact sheets will be shot during class on Thursday March 9th at Shorecrest.You will take candids of students and staff during this day. Some of these pictures could end up in the Yearbook.
The next contact sheet will be homework done at multiple locations of your choice due on Thursday, March 16th.
The next shooting day will Tuesday the 14th and you will shoot at multiple locations of your choice.

SC Candid  due Thursday March 9th.
Candid CS2 due Tuesday, March 14 th.
Candid CS3 (homework) due Thursday, March 14th. 
For each picture you should emphasize a specific composition element other than rule of thirds.
If you need a refresher on composition elements they can be reviewed at:

http://cybercollege.com/tvp023.htm
http://cybercollege.com/tvp024.htm
http://cybercollege.com/tvp025.htm

These include, but are not limited to: frame within a frame, leading lines, color contrast, movement and meaning, multiple levels of meaning, leading the subject, and using light to highlight or enhance a certain section of your picture. Move the camera around. Shoot high and low angles.

For this assignment I want you to get as far away from Shorecrest as possible. Downtown Seattle, Capital Hill, Fremont, and the U District are all great places to shoot "random" people, but Lake Forest Park could be just as effective. Make sure you ask permission to take pictures (especially if you are taking pictures of kids).


Unintentional out-of-focus pictures will not be accepted. If you would like to try a some selective focus shots please tell me before you go out shooting and I can lend you a long lens.

Getty Images Candid Pics
Image result for candid photos street life Image result for candid photos seattleImage result for candid photos seattle
Image result for candid photos excellentImage result for candid photos excellent teachersImage result for candid photos street life

Friday, March 03, 2017

Timer Script (Note: This script does NOT include the restart or jump scripts listed in the previous posts)

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class PlayerController : MonoBehaviour {

    public float speed;
    public Text countText;
    public Text winText;
    public Text text;

    private Rigidbody rb;
    private int count;

    float timeLeft = 30.0f;

    void Start ()
    {
        rb = GetComponent ();
        count = 0;
        SetCountText ();
        winText.text = "";
    }

    void FixedUpdate ()
    {
        float moveHorizontal = Input.GetAxis ("Horizontal");
        float moveVertical = Input.GetAxis ("Vertical");

        Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);

        rb.AddForce (movement * speed);
       
    }

    void OnTriggerEnter(Collider other)
    {
        if (other.gameObject.CompareTag ("Pick Up"))
        {
            other.gameObject.SetActive (false);
            count = count + 1;
            SetCountText ();
        }
    }



    void SetCountText ()
    {
        countText.text = "Count: " + count.ToString ();
        if (count >= 13)
        {
            winText.text = "You Win!";
        }
}
   


        void Update()
        {
            timeLeft -= Time.deltaTime;
            text.text = "Time Left:" + Mathf.Round (timeLeft);
            if (timeLeft < 0) 

           {
                SceneManager.LoadScene ("gameOver");
            }
        }   


    } 

Restart Script: Note the name of the scene in SceneManager

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class PlayerController : MonoBehaviour {


    public float speed;
    public Text countText;
    public Text winText;

    private Rigidbody rb;
    private int count;
    private bool grounded = true;

    void Start ()
    {
       
        rb = GetComponent();
        count = 0;
        SetCountText ();
        winText.text = "";
    }
    void FixedUpdate ()

{
      float moveHorizontal = Input.GetAxis ("Horizontal");
      float moveVertical = Input.GetAxis ("Vertical");

       
        Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);

        rb.AddForce (movement * speed);

        if (Input.GetKeyDown (KeyCode.Space)&&grounded)
        {
                rb.velocity = new Vector3 (rb.velocity.x, 5, rb.velocity.z);
                grounded = false;
            }
        if (Input.GetKey (KeyCode.R))
        {
            //load that level
            SceneManager.LoadScene ("Roll A Ball Mod");
        }


    }
    void OnTriggerEnter(Collider other)
    {
        if (other.gameObject.CompareTag ("Pick Up"))
        {
            other.gameObject.SetActive (false);
            count = count + 1;
            SetCountText ();
        }
      }
        void OnCollisionEnter (Collision Other)
        {
            if (Other.gameObject.CompareTag ("Ground"))
            {
                grounded = true;
            }
        }
    void SetCountText ()
    {
        countText.text = "Score :" + count.ToString ();
        if (count >= 12)
        {
            winText.text = " You Win!";
        }
    }

}
  

Wednesday, March 01, 2017

Editing Tourism Assignment

You will edit your ten best Tourism pictures today in Photoshop. Please choose 10 diverse pictures showcasing a variety of subjects in a variety of locations using a variety of composition and elements of design. Please do not use pictures that repeat single subjects if you can avoid it.

Please adjust and edit in Photoshop using the magic wand, quick selection tool, using cropping, burning, dodging, content-aware fill, and clone stamp.
You can also adjust using a variety of Layer Adjustments located just above the Layers palette.

Please try to improve color, lighting, and composition within each photo.

At the end of the period will turn in one 10 picture, 2*5 contact sheet called "Tourism Adjusted." 
You will also turn in your best single picture a a jpeg file. This will be called "Best Tourism Photo."


Jump Script

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class PlayerController : MonoBehaviour {

    public float speed;
    public Text countText;
    public Text winText;

    private Rigidbody rb;
    private int count;
    private bool grounded = true;

    void Start ()
    {
       rb = GetComponent<Rigidbody> (); 
        count = 0;
        SetCountText ();
        winText.text = "";
    }

    void FixedUpdate ()
    {
        float moveHorizontal = Input.GetAxis ("Horizontal");
        float moveVertical = Input.GetAxis ("Vertical");

        Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);

        rb.AddForce (movement * speed);

        if (Input.GetKeyDown (KeyCode.Space) && grounded)
        {
            rb.velocity = new Vector3 (rb.velocity.x, 10, rb.velocity.z);
            grounded = false;
        }

    }

    void OnTriggerEnter(Collider other)
    {
        if (other.gameObject.CompareTag ("Pick Up"))
        {
            other.gameObject.SetActive (false);
            count = count + 1;
            SetCountText ();
        }
    }

    void OnCollisionEnter (Collision Other)
    {
        if (Other.gameObject.CompareTag ("Board"))
        {
            grounded = true;

        }

    }


    void SetCountText ()
    {
        countText.text = "Count: " + count.ToString ();
        if (count >= 12) {
            winText.text = "You Win!";
        }
    }



}