I would just use the filter itself in the controller:
$filter('uppercase')(this.yourProperty)
just keep in mind that, if you you are going to use it inside a controller, for example, you need to inject this filter:
app.controller('FooController', ['$filter', function($filter) ...