In the case you're describing, yes, a CameraController is "something that controls the camera".
You can cut-down things like this:
Camera:
- has a frustum/projection matrix
- renders "what it sees" to "something" (on the screen, on a texture/buffer?) (to be honest, it could even be another type of object on its own: a view)
Controller:
- moves the camera around
- can be..
- attached to a world object
- controlled by user input (then how is it controlled, using a kind of "first person scheme"? "trackball/orbital camera"?)
- a function that drives the camera on a "rail" based on other data
- etc...
So depending on your needs, it could make sense to split the bare camera features from the way the camera is controlled.
Regarding the OOP-ness of this, I'm not sure there is a debate about whether you should or should not approach this with OOP.
OOP is an approach to programming offering encapsulation of data, etc. It's not opposed to separating the concerns when you need it.
At it's core, a camera is a projection matrix, a position matrix and a target to where to render it, while the controller is a way to convert "world coordinates" or "user input" to something to input to the position matrix of the camera. You can use OOP if it fits or design, or you can have free functions and global objects if it fits better.
After all, DOOM was release without being OOP.
If the game you're writing uses OOP, then it's fine, and if it doesn't and it uses a more data oriented approach, then it's fine too.
In an OOP setting, you could have Camera objects that determine how a scene is viewed, Controller objects which determine how cameras move, and View objects which determine onto what the camera is projected. And all those object instances could be interchangeable.
In a Data/function setting you would have a series of struct Camera, a series of struct CameraController, and a series of struct View, each having their own appropriate data, and a pointer to the other structs (or handle to them), with a bunch of function just using the data to render your game.