¿Cómo servir imágenes en Angular2?

Estoy tratando de poner la ruta relativa a una de mis imágenes en mi carpeta de activos en una etiqueta src de imagen en mi aplicación Angular2. Configuré una variable en mi componente en 'fullImagePath' y la usé en mi plantilla. He intentado muchas rutas posibles diferentes, pero parece que no puedo obtener mi imagen. ¿Hay alguna ruta especial en Angular2 que siempre sea relativa a una carpeta estática como en Django?

Componente

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-hero',
  templateUrl: './hero.component.html',
  styleUrls: ['./hero.component.css']
})

export class HeroComponent implements OnInit {
  fullImagePath: string;

  constructor() {
    this.fullImagePath = '../../assets/images/therealdealportfoliohero.jpg'
  }

  ngOnInit() {
  }

}

También puse la imagen en la misma carpeta que este componente, por lo que, dado que la plantilla y css en la misma carpeta funcionan, no estoy seguro de por qué una ruta relativa similar a la imagen no funciona. Este es el mismo componente con la imagen en la misma carpeta.

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-hero',
  templateUrl: './hero.component.html',
  styleUrls: ['./hero.component.css']
})

export class HeroComponent implements OnInit {
  fullImagePath: string;

  constructor() {
    this.fullImagePath = './therealdealportfoliohero.jpg'
  }

  ngOnInit() {
  }

}

html

<div class="row">
    <div class="col-xs-12">
        <img [src]="fullImagePath">
    </div>
</div>

árbol de aplicaciones * Dejé fuera la carpeta de módulos de nodo para ahorrar espacio

├── README.md
├── angular-cli.json
├── e2e
│&nbsp;&nbsp; ├── app.e2e-spec.ts
│&nbsp;&nbsp; ├── app.po.ts
│&nbsp;&nbsp; └── tsconfig.json
├── karma.conf.js
├── package.json
├── protractor.conf.js
├── src
│&nbsp;&nbsp; ├── app
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.css
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.html
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.spec.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.component.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── app.module.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.css
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.html
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.spec.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; ├── hero.component.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; │&nbsp;&nbsp; └── portheropng.png
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── index.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; └── shared
│&nbsp;&nbsp; │&nbsp;&nbsp;     └── index.ts
│&nbsp;&nbsp; ├── assets
│&nbsp;&nbsp; │&nbsp;&nbsp; └── images
│&nbsp;&nbsp; │&nbsp;&nbsp;     └── therealdealportfoliohero.jpg
│&nbsp;&nbsp; ├── environments
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── environment.dev.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; ├── environment.prod.ts
│&nbsp;&nbsp; │&nbsp;&nbsp; └── environment.ts
│&nbsp;&nbsp; ├── favicon.ico
│&nbsp;&nbsp; ├── index.html
│&nbsp;&nbsp; ├── main.ts
│&nbsp;&nbsp; ├── polyfills.ts
│&nbsp;&nbsp; ├── styles.css
│&nbsp;&nbsp; ├── test.ts
│&nbsp;&nbsp; ├── tsconfig.json
│&nbsp;&nbsp; └── typings.d.ts
└── tslint.json